mirror of
https://github.com/sjlongland/polyphonic-synthesizer.git
synced 2025-09-13 08:42:22 +10:00
12 lines
233 B
Makefile
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 $@
|