You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
849 B
46 lines
849 B
#
|
|
# OCFLAGS:
|
|
# COUNT_IOS - Counts struct io's left at end
|
|
# DEBUG - Various and sundy debug asserts
|
|
# NDEBUG - Defined: no asserts, Undefined: asserts
|
|
#
|
|
|
|
CC = gcc
|
|
CFLAGS = -Wall -W -O2 -g
|
|
INCS = -I. -I.. -I../btt
|
|
OCFLAGS = -UCOUNT_IOS -UDEBUG -DNDEBUG
|
|
XCFLAGS = -D_GNU_SOURCE -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64
|
|
override CFLAGS += $(INCS) $(XCFLAGS) $(OCFLAGS)
|
|
|
|
PROGS = btrecord btreplay
|
|
LIBS = -laio -lrt -lpthread
|
|
|
|
all: depend $(PROGS)
|
|
|
|
$(PROGS): | depend
|
|
|
|
docs:
|
|
$(MAKE) -C doc all
|
|
|
|
docsclean:
|
|
$(MAKE) -C doc clean
|
|
|
|
clean: docsclean
|
|
-rm -f *.o $(PROGS) .depend
|
|
|
|
%.o: %.c
|
|
$(CC) $(CFLAGS) -c -o $*.o $<
|
|
|
|
btrecord: btrecord.o
|
|
$(CC) $(CFLAGS) -o $@ $(filter %.o,$^)
|
|
|
|
btreplay: btreplay.o
|
|
$(CC) $(CFLAGS) -o $@ $(filter %.o,$^) $(LIBS)
|
|
|
|
depend:
|
|
@$(CC) -MM $(CFLAGS) *.c 1> .depend
|
|
|
|
ifneq ($(wildcard .depend),)
|
|
include .depend
|
|
endif
|