view audiodelay/Makefile @ 0:deadffdf5d60

import audiodelay
author pmeerw@pan
date Fri, 30 Oct 2009 22:45:25 +0100
parents
children
line wrap: on
line source

PROGRAMS = audiodelay
RM = rm -f

CC       = g++
DEFS     =   -DHAVE_GETTIMEOFDAY -D__LINUX_ALSA__
CFLAGS   = -O2 -Wall
LIBRARY  = -lpthread -lasound -lrtaudio

all: $(PROGRAMS)

audiodelay: audiodelay.cpp 
	$(CC) $(CFLAGS) $(DEFS) -o audiodelay audiodelay.cpp $(LIBRARY)

clean: 
	-$(RM) *.o $(PROGRAMS) *~ 

strip: 
	strip $(PROGRAMS)

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