commit d5657b8e
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; \