dernier commit avant travaux...

This commit is contained in:
2019-11-03 18:58:21 +01:00
parent ec27a42dc1
commit db3d7283df
15 changed files with 321 additions and 147 deletions

13
Makefile Normal file
View File

@@ -0,0 +1,13 @@
CC = gcc
CCOPT = -Wall -g -DDEBUG_LEVEL=1
OBJS = ui/ncfuncs.o files/smpllist.o files/ffuncs.o
LIBS = -lcurses
main.o: main.c nclooper.h Makefile
$(CC) ${CCOPT} -c $<
nclooper: main.o ${OBJS} Makefile
$(CC) ${CCOPT} $< ${OBJS} ${LIBS} -o $@