gtaubman / doneyet

A NCurses based To-Do list manager!
MIT License
31 stars 7 forks source link

Wrong variable substitution in Makefile #17

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. make

What is the expected output? What do you see instead?
Linking should be done using LFLAGS and not IFLAGS
-    $(CCC) -o $(EXECUTABLE) $(COMPILEFLAGS) $(OFILES) $(LIBS) $(IFLAGS) 
+    $(CCC) -o $(EXECUTABLE) $(COMPILEFLAGS) $(OFILES) $(LIBS) $(LFLAGS) 

What version of the product are you using? On what operating system?
revision 59

Original issue reported on code.google.com by kooco...@gmail.com on 18 Jul 2009 at 3:14

GoogleCodeExporter commented 9 years ago
Fixed in revision 61.  Thanks for reporting this!

Original comment by gtaub...@gmail.com on 18 Jul 2009 at 3:42