3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-09-02 16:20:51 +00:00

Improved ezsat stand-alone tests

This commit is contained in:
Clifford Wolf 2014-05-06 13:48:25 +02:00
parent a5a519a9d1
commit 30774ec6bc
4 changed files with 24 additions and 106 deletions

View file

@ -3,7 +3,7 @@ CC = clang
CXX = clang
CXXFLAGS = -MD -Wall -Wextra -ggdb
CXXFLAGS += -std=c++11 -O0
LDLIBS = -lminisat -lstdc++
LDLIBS = -lminisat -lm -lstdc++
all: demo_vec demo_bit demo_cmp testbench puzzle3d
@ -20,7 +20,7 @@ test: all
./demo_cmp
clean:
rm -f demo_bit demo_vec testbench puzzle3d *.o *.d
rm -f demo_bit demo_vec demo_cmp testbench puzzle3d *.o *.d
.PHONY: all test clean