#
#	NC-LOOPER --- another kluge from tth
#

CC      = gcc
CCOPT   = -Wall -g -DDEBUG_LEVEL=0

ffuncs.o:  ffuncs.c ffuncs.h Makefile
	$(CC) ${CCOPT} -c $<

smpllist.o:  smpllist.c smpllist.h ffuncs.h Makefile
	$(CC) ${CCOPT} -c $<

LIBS	= 
OBJS	= ffuncs.o smpllist.o

t:	t.c ${OBJS} Makefile
	$(CC) ${CCOPT} $< ${OBJS} ${LIBS} -o $@