shithub: femtolisp

ref: 04a8d03a708ce1361aada5201c9b87ea5be38b82
dir: /llt/Makefile/

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

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

.PHONY: all default clean

all: default

default: ${TARG}

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

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