Files
childprot/Makefile
Wolfgang Hottgenroth 52fc172950 initial
2013-03-27 20:07:19 +01:00

16 lines
225 B
Makefile

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)