X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=Makefile;h=c363876dfd3fef30a0f2a3ecef3832949854c023;hb=84d0cd2f078f4cb15c318a0fef2515feab570375;hp=ff5c7d9d26c4e28ff2a1ce8f2e1b9eed3c5790d0;hpb=88e6ab1f325b2b67695f20954b5d1f1746d13c8a;p=model-checker.git diff --git a/Makefile b/Makefile index ff5c7d9..c363876 100644 --- a/Makefile +++ b/Makefile @@ -5,8 +5,8 @@ OBJECTS = libthreads.o schedule.o model.o threads.o librace.o action.o \ datarace.o impatomic.o cmodelint.o \ snapshot.o malloc.o mymemory.o common.o mutex.o promise.o conditionvariable.o -CPPFLAGS += -Iinclude -I. -rdynamic -LDFLAGS = -ldl -lrt +CPPFLAGS += -Iinclude -I. +LDFLAGS = -ldl -lrt -rdynamic SHARED = -shared # Mac OSX options @@ -21,12 +21,15 @@ program_H_SRCS := $(wildcard *.h) $(wildcard include/*.h) program_C_SRCS := $(wildcard *.c) $(wildcard *.cc) DEPS = make.deps -all: $(LIB_SO) $(DEPS) tests +all: $(LIB_SO) tests +$(DEPS): build_deps := 1 $(DEPS): $(program_C_SRCS) $(program_H_SRCS) $(CXX) -MM $(program_C_SRCS) $(CPPFLAGS) > $(DEPS) +ifeq ($(build_deps),1) include $(DEPS) +endif debug: CPPFLAGS += -DCONFIG_DEBUG debug: all @@ -41,7 +44,7 @@ $(LIB_SO): $(OBJECTS) malloc.o: malloc.c $(CC) -fPIC -c malloc.c -DMSPACES -DONLY_MSPACES -DHAVE_MMAP=0 $(CPPFLAGS) -Wno-unused-variable -%.o: %.cc +%.o: %.cc $(DEPS) $(CXX) -fPIC -c $< $(CPPFLAGS) PHONY += clean