forked from MarkusRabe/cadet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.in
41 lines (28 loc) · 1.09 KB
/
Makefile.in
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
TARGET = cadet
SRCDIR = ./src
LIBS = -lm -lstdc++
CC = cc
CFLAGS += -std=c11
CPPFLAGS += -std=c++11
.PHONY: default clean test
default: $(TARGET)
OBJECTS = $(patsubst %.c, %.o, $(wildcard $(SRCDIR)/*.c))
HEADERS = $(wildcard $(SRCDIR)/*.h)
LGL_OBJECTS = $(patsubst %.c, %.o, $(wildcard $(SRCDIR)/lingeling/*.c))
LGL_HEADERS = $(wildcard $(SRCDIR)/lingeling/*.h)
MINISAT_OBJECTS = $(patsubst %.cc, %.o, $(wildcard $(SRCDIR)/minisat/*.cc))
MINISAT_OBJECTS += $(SRCDIR)/satsolver_minisat.o
%.o: %.c $(HEADERS) $(LGL_HEADERS)
$(CC) $(CFLAGS) -c $< -o $@
.PRECIOUS: $(TARGET) $(OBJECTS) $(LGL_OBJECTS) $(MINISAT_OBJECTS)
$(TARGET): $(OBJECTS) $(LGL_OBJECTS) $(MINISAT_OBJECTS)
$(CC) $(CFLAGS) $(OBJECTS) $(LGL_OBJECTS) $(MINISAT_OBJECTS) $(LIBS) -o $@
test: default
python3 scripts/tester.py --test -f
shared: default
$(CC) $(CFLAGS) $(OBJECTS) $(LGL_OBJECTS) $(MINISAT_OBJECTS) $(LIBS) $(SHARED)
profile: default
$(CC) $(CFLAGS) -pg $(OBJECTS) $(MINISAT_OBJECTS) $(LIBS) -o $(TARGET)
clean:
cd $(SRCDIR) && rm -f *.o *.so *.h.gch *.plist minisat/*.o lingeling/*.o
-rm -f $(TARGET) libcadet.so