14 lines
255 B
Makefile
14 lines
255 B
Makefile
|
CC = gcc
|
||
|
CCOPT = -Wall -g -DDEBUG_LEVEL=1
|
||
|
|
||
|
OBJS = ui/ncfuncs.o files/smpllist.o files/ffuncs.o
|
||
|
LIBS = -lcurses
|
||
|
|
||
|
main.o: main.c nclooper.h Makefile
|
||
|
$(CC) ${CCOPT} -c $<
|
||
|
|
||
|
|
||
|
nclooper: main.o ${OBJS} Makefile
|
||
|
$(CC) ${CCOPT} $< ${OBJS} ${LIBS} -o $@
|
||
|
|