aboutsummaryrefslogtreecommitdiffstats
path: root/test/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'test/Makefile')
-rw-r--r--test/Makefile8
1 files changed, 7 insertions, 1 deletions
diff --git a/test/Makefile b/test/Makefile
index 504e4c53..e5546824 100644
--- a/test/Makefile
+++ b/test/Makefile
@@ -1,12 +1,17 @@
include ../Makefile.config
-DIRS=c compression raytracer spass regression
+DIRS=c compression raytracer spass regression \
+ extra
+PICOSAT=picosat-965
+
ifeq ($(CLIGHTGEN),true)
DIRS+=clightgen
endif
all:
set -e; for i in $(DIRS); do $(MAKE) CCOMPOPTS='$(CCOMPOPTS)' -C $$i all; done
+ cd $(PICOSAT) && ./configure.sh && cd ..
+ $(MAKE) CCOMPOPTS='$(CCOMPOPTS)' -C $(PICOSAT) -f Makefile.local all
test:
set -e; for i in $(DIRS); do $(MAKE) SIMU='$(SIMU)' -C $$i test; done
@@ -19,3 +24,4 @@ bench:
clean:
for i in $(DIRS); do $(MAKE) -C $$i clean; done
+ $(MAKE) CCOMPOPTS='$(CCOMPOPTS)' -C $(PICOSAT) -f Makefile.local clean