shithub: femtolisp

ref: f09637f62c7e948abb5c0e5df7d1b770de9625e6
dir: /llt/Makefile/

View raw version
CFLAGS?=-O2 -pipe -g -Wall -falign-functions -Wno-strict-aliasing
TARG=libllt.a

OBJS=\
	bitvector-ops.o\
	bitvector.o\
	dump.o\
	hashing.o\
	htable.o\
	int2str.o\
	ios.o\
	lltinit.o\
	ptrhash.o\
	random.o\
	timefuncs.o\
	utf8.o\

.PHONY: all default clean

all: default

default: ${TARG}

clean:
	rm -f *.o ${TARG}

${TARG}: ${OBJS}
	${AR} crs ${TARG} ${OBJS}