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