18 lines
257 B
Makefile
18 lines
257 B
Makefile
|
|
# NcLooper : user interface components
|
|
|
|
CC = gcc
|
|
CCOPT = -Wall -g -DDEBUG_LEVEL=1
|
|
|
|
ncfuncs.o: ncfuncs.c ncfuncs.h Makefile
|
|
$(CC) ${CCOPT} -c $<
|
|
|
|
OBJS = ncfuncs.o
|
|
LIBS = -lcurses
|
|
|
|
t: t.c ${OBJS} Makefile
|
|
$(CC) ${CCOPT} $< ${OBJS} ${LIBS} -o $@
|
|
|
|
|
|
|