3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-08-22 02:57:51 +00:00

Added ezSAT library

This commit is contained in:
Clifford Wolf 2013-06-07 10:38:35 +02:00
parent c32b918681
commit 3371563f2f
12 changed files with 2854 additions and 8 deletions

26
libs/ezsat/Makefile Normal file
View file

@ -0,0 +1,26 @@
CC = clang
CXX = clang
CXXFLAGS = -MD -Wall -Wextra -ggdb
CXXFLAGS += -std=c++11 -O0
LDLIBS = -lminisat -lstdc++
all: demo_vec demo_bit testbench puzzle3d
demo_vec: demo_vec.o ezsat.o ezminisat.o
demo_bit: demo_bit.o ezsat.o ezminisat.o
testbench: testbench.o ezsat.o ezminisat.o
puzzle3d: puzzle3d.o ezsat.o ezminisat.o
test: all
./testbench
./demo_bit
./demo_vec
clean:
rm -f demo_bit demo_vec testbench puzzle3d *.o *.d
.PHONY: all test clean
-include *.d