reading samples list

This commit is contained in:
2019-10-31 15:47:54 +01:00
parent 5bb5ae987f
commit af13698209
5 changed files with 75 additions and 22 deletions

View File

@@ -1,9 +1,11 @@
CC = gcc
CCOPT = -Wall -g -DDEBUG_LEVEL=1
ffuncs.o: ffuncs.c ffuncs.h Makefile
$(CC) ${CCOPT} -c $<
LIBS =
OBJS = ffuncs.o
t: t.c ${OBJS} Makefile
$(CC) ${CCOPT} $< ${OBJS} ${LIBS} -o $@