childprot/Makefile
Wolfgang Hottgenroth f30026e6b0 log
2013-03-27 23:09:15 +01:00

16 lines
255 B
Makefile

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