pre-xmas commit
This commit is contained in:
12
Makefile
12
Makefile
@@ -1,12 +1,22 @@
|
||||
#
|
||||
# NC-LOOPER --- another kluge from tth
|
||||
#
|
||||
|
||||
CC = gcc
|
||||
CCOPT = -Wall -g -DDEBUG_LEVEL=1
|
||||
CCOPT = -Wall -g -DDEBUG_LEVEL=0
|
||||
|
||||
OBJS = ui/ncfuncs.o files/smpllist.o files/ffuncs.o
|
||||
LIBS = -lcurses
|
||||
|
||||
all: nclooper
|
||||
|
||||
main.o: main.c nclooper.h Makefile
|
||||
$(CC) ${CCOPT} -c $<
|
||||
|
||||
interactive.o: interactive.c nclooper.h Makefile
|
||||
$(CC) ${CCOPT} -c $<
|
||||
|
||||
OBJS += interactive.o
|
||||
|
||||
nclooper: main.o ${OBJS} Makefile
|
||||
$(CC) ${CCOPT} $< ${OBJS} ${LIBS} -o $@
|
||||
|
||||
Reference in New Issue
Block a user