Browse Source

Add -ltinfo in OPTIONS macro in makefile

Matteo Savatteri 4 years ago
parent
commit
78d555a8a9
1 changed files with 3 additions and 1 deletions
  1. 3 1
      makefile

+ 3 - 1
makefile

@@ -12,7 +12,9 @@ CURSES := -lncurses
 
 THREADS := -pthread
 
-OPTIONS := $(CURSES) $(THREADS)
+TINFO := -ltinfo
+
+OPTIONS := $(CURSES) $(THREADS) $(TINFO)
 
 
 .PHONY: open, opencpp, openhpp, clean, cleanall, remake