NcLooper/files/Makefile

20 lines
333 B
Makefile
Raw Normal View History

2019-12-23 17:55:31 +01:00
#
# NC-LOOPER --- another kluge from tth
#
2019-10-30 05:31:38 +01:00
CC = gcc
2019-12-23 17:55:31 +01:00
CCOPT = -Wall -g -DDEBUG_LEVEL=0
2019-10-30 05:31:38 +01:00
2019-10-31 15:47:54 +01:00
ffuncs.o: ffuncs.c ffuncs.h Makefile
$(CC) ${CCOPT} -c $<
2019-10-30 05:31:38 +01:00
2019-11-03 18:58:21 +01:00
smpllist.o: smpllist.c smpllist.h ffuncs.h Makefile
$(CC) ${CCOPT} -c $<
2019-10-30 05:31:38 +01:00
LIBS =
2019-11-03 18:58:21 +01:00
OBJS = ffuncs.o smpllist.o
2019-10-30 05:31:38 +01:00
t: t.c ${OBJS} Makefile
$(CC) ${CCOPT} $< ${OBJS} ${LIBS} -o $@