NcLooper/Makefile

24 lines
409 B
Makefile
Raw Permalink Normal View History

2019-12-23 17:55:31 +01:00
#
# NC-LOOPER --- another kluge from tth
#
2019-11-03 18:58:21 +01:00
CC = gcc
2019-12-23 17:55:31 +01:00
CCOPT = -Wall -g -DDEBUG_LEVEL=0
2019-11-03 18:58:21 +01:00
OBJS = ui/ncfuncs.o files/smpllist.o files/ffuncs.o
LIBS = -lcurses
2019-12-23 17:55:31 +01:00
all: nclooper
2019-11-03 18:58:21 +01:00
main.o: main.c nclooper.h Makefile
$(CC) ${CCOPT} -c $<
2019-12-23 17:55:31 +01:00
interactive.o: interactive.c nclooper.h Makefile
$(CC) ${CCOPT} -c $<
OBJS += interactive.o
2019-11-03 18:58:21 +01:00
nclooper: main.o ${OBJS} Makefile
$(CC) ${CCOPT} $< ${OBJS} ${LIBS} -o $@