Browse Source

Merge branch 'master' of matteosavatteri/invaders into master

Add `-ltinfo` to compilation options
blue 3 years ago
parent
commit
fe9fa498b3
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