paoutput/Makefile

15 lines
107 B
Makefile

CC=gcc
LDLIBS=-lpulse
CFLAGS=-g
all: paoutput
paoutput:
clean:
rm -f *.o paoutput
.PHONY: all clean