mirror of
https://github.com/LionyxML/nocurses.git
synced 2023-08-10 21:13:25 +03:00
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
|