gadgets-OSC/functions/Makefile

29 lines
573 B
Makefile
Raw Normal View History

2019-08-02 23:34:15 +11:00
#----------------------------------------------------
#
# functions
#
#----------------------------------------------------
2019-08-26 01:51:36 +11:00
all: libpocosc.a
2019-08-02 23:34:15 +11: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 $<
2020-02-22 04:05:13 +11:00
joyutils.o: joyutils.c joyutils.h Makefile
gcc ${OPTS} -c $<
2019-08-02 23:34:15 +11:00
ncursefuncs.o: ncursefuncs.c ncursefuncs.h Makefile
gcc ${OPTS} -c $<
2020-02-22 04:05:13 +11:00
libpocosc.a: senders.o alsaseq.o serial.o ncursefuncs.o \
joyutils.o
2019-08-02 23:34:15 +11:00
ar r $@ $?