Mercurial > hg > audiostuff
view Makefile @ 6:22a74b01a099 default tip
implement more meaningful test program
author | Peter Meerwald <pmeerw@cosy.sbg.ac.at> |
---|---|
date | Fri, 25 Jun 2010 16:14:50 +0200 |
parents | 9cadc470e3da |
children |
line wrap: on
line source
PROGRAMS = audiodelay alsacap rtaudio-test RM = rm -f CC = gcc CXX = g++ CFLAGS = -O2 -Wall all: $(PROGRAMS) alsacap: alsacap.c $(CC) $(CFLAGS) -o $@ alsacap.c -lasound audiodelay: audiodelay.cpp $(CXX) $(CFLAGS) -o $@ audiodelay.cpp -lpthread -lasound -lrtaudio rtaudio-test: rtaudio-test.cpp $(CXX) $(CFLAGS) -o $@ rtaudio-test.cpp -lpthread -lasound -lrtaudio clean: -$(RM) *.o $(PROGRAMS) *~ strip: strip $(PROGRAMS)