2019-10-27 21:08:27 +11:00
|
|
|
|
|
|
|
# NcLooper : user interface components
|
|
|
|
|
|
|
|
CC = gcc
|
|
|
|
CCOPT = -Wall -g -DDEBUG_LEVEL=1
|
|
|
|
|
2019-10-30 15:31:38 +11:00
|
|
|
ncfuncs.o: ncfuncs.c ncfuncs.h Makefile
|
|
|
|
$(CC) ${CCOPT} -c $<
|
|
|
|
|
|
|
|
OBJS = ncfuncs.o
|
|
|
|
LIBS = -lcurses
|
2019-10-27 21:08:27 +11:00
|
|
|
|
|
|
|
t: t.c ${OBJS} Makefile
|
|
|
|
$(CC) ${CCOPT} $< ${OBJS} ${LIBS} -o $@
|
|
|
|
|
2019-10-30 15:31:38 +11:00
|
|
|
|
|
|
|
|