mirror of
https://github.com/LionyxML/nocurses.git
synced 2023-08-10 21:13:25 +03:00
145091f801
* added Makefile, make functions static * added settitle, setcurshape, gettermsize * added getch and getche
17 lines
230 B
Makefile
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
|