Initial revision
This commit is contained in:
parent
1fa73989e0
commit
cf5dd46350
67 changed files with 44947 additions and 0 deletions
36
buddy/examples/solitare/makefile
Normal file
36
buddy/examples/solitare/makefile
Normal file
|
|
@ -0,0 +1,36 @@
|
|||
# --------------------------------
|
||||
# Makefile for solitare test example
|
||||
# --------------------------------
|
||||
|
||||
# --- Compiler flags
|
||||
CFLAGS = -O3 -pedantic -Wall -ansi -L../../src -I../../src
|
||||
|
||||
# --- C++ compiler
|
||||
CPP = g++
|
||||
|
||||
# --- C compiler
|
||||
CC = gcc
|
||||
|
||||
|
||||
# --- Do not touch ---
|
||||
|
||||
.SUFFIXES: .cxx .c
|
||||
|
||||
.cxx.o:
|
||||
$(CPP) $(CFLAGS) -c $<
|
||||
|
||||
.c.o:
|
||||
$(CC) $(CFLAGS) -c $<
|
||||
|
||||
solitare: solitare.o bddlib
|
||||
$(CPP) $(CFLAGS) solitare.o -o solitare -lbdd -lm
|
||||
|
||||
bddlib:
|
||||
cd ../..; make
|
||||
|
||||
clean:
|
||||
rm -f *~
|
||||
rm -f *.o
|
||||
rm -f solitare
|
||||
|
||||
milner.o: ../../src/bdd.h
|
||||
Loading…
Add table
Add a link
Reference in a new issue