comparison audiodelay/Makefile @ 0:deadffdf5d60

import audiodelay
author pmeerw@pan
date Fri, 30 Oct 2009 22:45:25 +0100
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:deadffdf5d60
1 PROGRAMS = audiodelay
2 RM = rm -f
3
4 CC = g++
5 DEFS = -DHAVE_GETTIMEOFDAY -D__LINUX_ALSA__
6 CFLAGS = -O2 -Wall
7 LIBRARY = -lpthread -lasound -lrtaudio
8
9 all: $(PROGRAMS)
10
11 audiodelay: audiodelay.cpp
12 $(CC) $(CFLAGS) $(DEFS) -o audiodelay audiodelay.cpp $(LIBRARY)
13
14 clean:
15 -$(RM) *.o $(PROGRAMS) *~
16
17 strip:
18 strip $(PROGRAMS)

Repositories maintained by Peter Meerwald, pmeerw@pmeerw.net.