X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=test%2FMakefile;h=f1ea5b295d110f81090bf2807b2aeb25c2b9f8bc;hb=7921811e8bd7bba2cdd892434a58ec7254ae0f99;hp=c918368e253c6d282b9bece62f1031be4177e66c;hpb=d8e5e19d215225df584752d5870e3fc0bbdcfbe3;p=model-checker.git diff --git a/test/Makefile b/test/Makefile index c918368..f1ea5b2 100644 --- a/test/Makefile +++ b/test/Makefile @@ -8,7 +8,10 @@ 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$(BASE) -l$(LIB_NAME) @@ -18,3 +21,4 @@ all: $(OBJS) clean:: rm -f *.o + $(MAKE) -C litmus clean