From e641c4daedcd877466d2ccef399f3f90e1b97e41 Mon Sep 17 00:00:00 2001 From: Oliver Bock <oliver.bock@aei.mpg.de> Date: Mon, 7 Mar 2011 13:30:54 +0100 Subject: [PATCH] Fixed Makefile for proper linking --- example/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/example/Makefile b/example/Makefile index e6bfe85..ed56104 100644 --- a/example/Makefile +++ b/example/Makefile @@ -14,8 +14,8 @@ else endif -$(TARGET): main.cpp - g++ $(CXXFLAGS) $(LDFLAGS) -o $(TARGET) main.cpp +$(TARGET): main.cpp Makefile + g++ $(CXXFLAGS) main.cpp $(LDFLAGS) -o $(TARGET) clean: rm -f $(TARGET) -- GitLab