nocurses/Makefile
Koxiaet 145091f801 Add settitle, setcurshape, gettermsize, getch and getche (#3)
* added Makefile, make functions static

* added settitle, setcurshape, gettermsize

* added getch and getche
2019-10-23 14:41:19 -03:00

17 lines
230 B
Makefile

CC::=cc
PREFIX::=/usr/local
all:
install: nocurses.h
install -CD nocurses.h ${PREFIX}/include/nocurses.h
uninstall:
rm ${PREFIX}/include/nocurses.h
demo: demo.c nocurses.h
${CC} -pthread -lm -o demo demo.c
clean:
rm demo