childprot/Makefile
Wolfgang Hottgenroth 4582de6afc changes
2013-03-27 20:56:17 +01:00

16 lines
249 B
Makefile

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