DavidGriffith / frotz

Infocom-style interactive fiction player for Unix and DOS (moved to https://gitlab.com/DavidGriffith/frotz)
GNU General Public License v2.0
210 stars 64 forks source link

Makefile declares INCL and FLAGS, but never uses them #19

Closed nieder closed 9 years ago

nieder commented 9 years ago

The Makefile has the following declaration:

FLAGS = $(OPTS) $(CURSES_DEFS) $(INCL)

However, it is not used anywhere in the code. So setting INCL is useless, because the only place it is used is in declaring FLAGS, and $(FLAGS) is never used.