ref: 84920ce8972b5985518b328707aacebe9a7eb169
dir: /llt/Makefile/
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}