This commit is contained in:
Wolfgang Hottgenroth
2013-03-27 20:07:19 +01:00
commit 52fc172950
4 changed files with 120 additions and 0 deletions

15
Makefile Normal file
View File

@ -0,0 +1,15 @@
CXXFLAGS = -O2 -g -Wall -fmessage-length=0
OBJS = Database.o ChildProt.o
LIBS = -lsqlite3
TARGET = ChildProt
$(TARGET): $(OBJS)
$(CXX) -o $(TARGET) $(OBJS) $(LIBS)
all: $(TARGET)
clean:
rm -f $(OBJS) $(TARGET)