childprot/Makefile

16 lines
249 B
Makefile
Raw Normal View History

2013-03-27 20:07:19 +01:00
CXXFLAGS = -O2 -g -Wall -fmessage-length=0
2013-03-27 20:56:17 +01:00
OBJS = Database.o PostfixPolicyProtocol.o ChildProt.o
2013-03-27 20:07:19 +01:00
LIBS = -lsqlite3
TARGET = ChildProt
$(TARGET): $(OBJS)
$(CXX) -o $(TARGET) $(OBJS) $(LIBS)
all: $(TARGET)
clean:
rm -f $(OBJS) $(TARGET)