some work on the eyecandy curses display

This commit is contained in:
2019-01-23 22:39:03 +01:00
parent 95b1022974
commit dce67b491d
7 changed files with 60 additions and 11 deletions

View File

@@ -13,9 +13,12 @@ ecran.o: ecran.c Makefile ecran.h
waterfall.o: waterfall.c Makefile
gcc $(COPT) -c $<
vumetre.o: vumetre.c Makefile
gcc $(COPT) -c $<
# --------------- ***
OBJ = ecran.o waterfall.o 7segments.o
OBJ = ecran.o waterfall.o 7segments.o vumetre.o
t: t.c Makefile $(OBJ) ecran.h
gcc $(COPT) $< $(OBJ) -lncurses -o $@