git repos / oastat

commit d5657b8e

sago007 · 2014-05-20 19:18
d5657b8ec0b22c300f3cf65345e5de0acd771154 patch · browse files
parent 636bd219e9b4a0978ffe059c061bf94151283b73

The Makefile did not include the compile flags. Now it does!

Changed files

M src/Makefile before
diff --git a/src/Makefile b/src/Makefile index fa54e3c..52909a7 100644 --- a/src/Makefile +++ b/src/Makefile
@@ -27,7 +27,7 @@ oastat: $(O_FILES)
g++ -O -o oastat $(O_FILES) $(BASE_LIBS)
%.o : %.cpp
- g++ -MD -c -o $@ $<
+ g++ -MD $(BASE_CFLAGS) -o $@ $<
@cp $*.d $*.P; \
sed -e 's/#.*//' -e 's/^[^:]*: *//' -e 's/ *\\$$//' \
-e '/^$$/ d' -e 's/$$/ :/' < $*.d >> $*.P; \