14 lines
322 B
Makefile
14 lines
322 B
Makefile
INCLUDE = -I../../include
|
|
OPTIMIZE = -O3 -mtune=pentium-m
|
|
|
|
OBJS = halog halog64
|
|
|
|
halog: halog.c fgets2.c
|
|
$(CC) $(OPTIMIZE) -o $@ $(INCLUDE) ../../src/ebtree.c ../../src/eb32tree.c $^
|
|
|
|
halog64: halog.c fgets2-64.c
|
|
$(CC) $(OPTIMIZE) -o $@ $(INCLUDE) ../../src/ebtree.c ../../src/eb32tree.c $^
|
|
|
|
clean:
|
|
rm -vf $(OBJS)
|