From 06fe920d4c9574bf7fa59af1fa84e04ca47bfd0f Mon Sep 17 00:00:00 2001 From: tobast Date: Wed, 6 Feb 2013 21:10:57 +0100 Subject: [PATCH] Modified makefile to fix a bug --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 3b72b45..70a0573 100644 --- a/Makefile +++ b/Makefile @@ -26,13 +26,13 @@ checkdevcode: # ./pastebincl --usergen < userinput &> /dev/null $(TARGET): $(OBJS) - $(CXX) $(CXXLIBS) $^ $(CXXFLAGS) -o $@ + $(CXX) $^ $(CXXFLAGS) $(CXXLIBS) -o $@ ConfigRead.o: ConfigRead.cpp - $(CXX) $(CXXLIBS) -c $< $(CXXFLAGS) -o $@ -DENCODING_KEY=\"${ENC_KEY}\" + $(CXX) -c $< $(CXXFLAGS) $(CXXLIBS) -o $@ -DENCODING_KEY=\"${ENC_KEY}\" %.o: %.cpp - $(CXX) $(CXXLIBS) -c $< $(CXXFLAGS) -o $@ + $(CXX) -c $< $(CXXLIBS) $(CXXFLAGS) -o $@ install: cp $(TARGET) /usr/bin