X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=test%2FMakefile;h=f1ea5b295d110f81090bf2807b2aeb25c2b9f8bc;hb=7921811e8bd7bba2cdd892434a58ec7254ae0f99;hp=a3de6fe9e7c1030d4d783cc3d5880606ddd9140f;hpb=538175be35df96c8858f384d0001c35701f5e666;p=model-checker.git diff --git a/test/Makefile b/test/Makefile index a3de6fe..f1ea5b2 100644 --- a/test/Makefile +++ b/test/Makefile @@ -1,18 +1,24 @@ -include ../common.mk +BASE = .. -CPPFLAGS += -I.. -I../include +include $(BASE)/common.mk + +CPPFLAGS += -I$(BASE) -I$(BASE)/include SRCS = $(wildcard *.c) CPSRCS = $(wildcard *.cc) OBJS = $(patsubst %.c,%.o,$(SRCS)) $(patsubst %.cc,%.o,$(CPSRCS)) -all: $(OBJS) +all: $(OBJS) litmus-tests + +litmus-tests:: + $(MAKE) -C litmus %.o: %.c - $(CC) -o $@ $< $(CPPFLAGS) -L.. -l$(LIB_NAME) + $(CC) -o $@ $< $(CPPFLAGS) -L$(BASE) -l$(LIB_NAME) %.o: %.cc - $(CXX) -o $@ $< $(CPPFLAGS) -L.. -l$(LIB_NAME) + $(CXX) -o $@ $< $(CPPFLAGS) -L$(BASE) -l$(LIB_NAME) clean:: rm -f *.o + $(MAKE) -C litmus clean