correct comment typo
[model-checker.git] / test / Makefile
index f7a01be0a344285f11e62af3de537699790ab47a..f1ea5b295d110f81090bf2807b2aeb25c2b9f8bc 100644 (file)
@@ -1,15 +1,24 @@
-include ../common.mk
+BASE = ..
 
-CPPFLAGS += -I.. -I../include
-TESTS=userprog
+include $(BASE)/common.mk
+
+CPPFLAGS += -I$(BASE) -I$(BASE)/include
 
 SRCS = $(wildcard *.c)
-OBJS = $(patsubst %.c,%.o,$(SRCS))
+CPSRCS = $(wildcard *.cc)
+OBJS = $(patsubst %.c,%.o,$(SRCS)) $(patsubst %.cc,%.o,$(CPSRCS))
+
+all: $(OBJS) litmus-tests
 
-all: $(OBJS)
+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$(BASE) -l$(LIB_NAME)
 
 clean::
-       rm -f *.o $(TESTS)
+       rm -f *.o
+       $(MAKE) -C litmus clean