1
0
mirror of https://github.com/sjlongland/polyphonic-synthesizer.git synced 2025-09-13 08:42:22 +10:00
polyphonic-synthesizer/Makefile.pc

12 lines
233 B
Makefile

# vim: set filetype=make:
# Makefile for building synthesizer test application on PC
# Requires libao
LIBS=-lao
pctest: poly.pc.o pctest.pc.o
$(CC) $(LIBS) $(LDFLAGS) -o $@ $^
%.pc.o: %.c
$(CC) $(CFLAGS) $(CPPFLAGS) -c $< -o $@