DavidGriffith/frotz

Makefile declares INCL and FLAGS, but never uses them

Closed this issue · 0 comments

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.