boilerplate for ncurses interface

This commit is contained in:
2019-01-10 01:44:47 +01:00
parent 7e376763b8
commit 6fe2c54cfb
7 changed files with 232 additions and 0 deletions

21
viz/curses/Makefile Normal file
View File

@@ -0,0 +1,21 @@
# --------------- ***
ecran.o: ecran.c Makefile ecran.h
gcc -Wall -c $<
7segments.o: 7segments.c Makefile
gcc -Wall -c $<
waterfall.o: waterfall.c Makefile
gcc -Wall -c $<
# --------------- ***
OBJ = ecran.o waterfall.o 7segments.o
t: t.c Makefile $(OBJ) ecran.h
gcc -Wall $< $(OBJ) -lncurses -o $@
# --------------- ***