summaryrefslogtreecommitdiff
path: root/src/Makefile
diff options
context:
space:
mode:
authorportix <portix@gmx.net>2011-02-24 16:40:52 +0100
committerportix <portix@gmx.net>2011-02-24 16:40:52 +0100
commitbda42a11539d3c646057cc0db9aa4e841cdf98f1 (patch)
tree048877cdcd2ed957d78bc2cfbf11dd2ba02575ac /src/Makefile
parent2347b091ce0748f9315a0d649abd50f303bab342 (diff)
downloaddwb-bda42a11539d3c646057cc0db9aa4e841cdf98f1.zip
rm LDFLAGS from Makefile
Diffstat (limited to 'src/Makefile')
-rw-r--r--src/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile b/src/Makefile
index 025ed630..a6f0ba63 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -10,7 +10,7 @@ all: $(TARGET)
$(TARGET): $(OBJ)
@echo "$(CC) $@"
- @$(CC) $(LDFLAGS) $(OBJ) -o $(TARGET)
+ @$(CC) $(FLAGS) $(OBJ) -o $(TARGET)
-include $(OBJ:.o=.d)