Files
retrobsd/share/examples/curses/Makefile
2015-09-13 22:19:53 -07:00

21 lines
344 B
Makefile

PROG = flip jump timer typetext
#CFLAGS = -DNCURSES_OPAQUE=0
LIBS = -lcurses -ltermlib
all: $(PROG)
clean:
rm -f *.o *~ $(PROG)
flip: flip.c
cc $(CFLAGS) -o $@ $@.c $(LIBS)
jump: jump.c
cc $(CFLAGS) -o $@ $@.c $(LIBS)
timer: timer.c
cc $(CFLAGS) -o $@ $@.c $(LIBS)
typetext: typetext.c
cc $(CFLAGS) -o $@ $@.c $(LIBS)