importing basic functions

This commit is contained in:
2019-08-02 14:34:15 +02:00
parent 36d38c2a00
commit a817966104
11 changed files with 289 additions and 2 deletions

22
functions/Makefile Normal file
View File

@@ -0,0 +1,22 @@
#----------------------------------------------------
#
# functions
#
#----------------------------------------------------
OPTS = -Wall -g -DDEBUG_LEVEL=1
senders.o: senders.c senders.h Makefile
gcc ${OPTS} -c $<
alsaseq.o: alsaseq.c alsaseq.h Makefile
gcc ${OPTS} -c $<
serial.o: serial.c serial.h Makefile
gcc ${OPTS} -c $<
ncursefuncs.o: ncursefuncs.c ncursefuncs.h Makefile
gcc ${OPTS} -c $<
libpocosc.a: senders.o alsaseq.o serial.o ncursefuncs.o
ar r $@ $?