# Makefile for pastebincl (command-line pastebin) by BASTIAN Théophile (aka Tobast) ENC_KEY=`./genkey.py` CXX=g++ CXXFLAGS=-Wall -Werror -O2 CXXLIBS=-lcurl TARGET=pastebincl OBJS=CurlPost.o func.o main.o ParameterRead.o ConfigRead.o all: $(TARGET) makeuser makeuser: ./pastebincl --usergen < userinput &> /dev/null $(TARGET): $(OBJS) $(CXX) $(CXXLIBS) $^ $(CXXFLAGS) -o $@ ConfigRead.o: ConfigRead.cpp $(CXX) $(CXXLIBS) -c $< $(CXXFLAGS) -o $@ -DENCODING_KEY=\"${ENC_KEY}\" %.o: %.cpp $(CXX) $(CXXLIBS) -c $< $(CXXFLAGS) -o $@ .PHONY: clean clean: rm -f *.o mrproper: clean rm -f $(TARGET)