gadgets-OSC/functions/Makefile

25 lines
495 B
Makefile
Raw Normal View History

2019-08-02 14:34:15 +02:00
#----------------------------------------------------
#
# functions
#
#----------------------------------------------------
2019-08-25 16:51:36 +02:00
all: libpocosc.a
2019-08-02 14:34:15 +02:00
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 $@ $?