summaryrefslogtreecommitdiff
path: root/tests/Makefile.in
diff options
context:
space:
mode:
authorGary Scavone <gary@music.mcgill.ca>2008-11-22 03:32:52 +0000
committerStephen Sinclair <sinclair@music.mcgill.ca>2013-10-11 01:38:23 +0200
commitb96814b6bc97b32a590521ae8f401c40dac4cc7c (patch)
tree56155ccefcf02da2e94bc2d7232d4960cac567c4 /tests/Makefile.in
parent1d3b191e05c76800fd3c30675f101e9dc5b2f5f1 (diff)
Various updates to configure script, rtaudio files, and test files in preparation for upcoming release (gps).
Diffstat (limited to 'tests/Makefile.in')
-rw-r--r--tests/Makefile.in13
1 files changed, 7 insertions, 6 deletions
diff --git a/tests/Makefile.in b/tests/Makefile.in
index 059b5ce..4e93823 100644
--- a/tests/Makefile.in
+++ b/tests/Makefile.in
@@ -11,12 +11,10 @@ vpath %.o $(OBJECT_PATH)
OBJECTS = RtAudio.o @objects@
CC = @CXX@
-DEFS = @debug@
-DEFS += @audio_apis@
-CFLAGS = @CFLAGS@
-CFLAGS += @warn@ -I$(INCLUDE) -I../include
+DEFS = @CPPFLAGS@
+CFLAGS = @CXXFLAGS@
+CFLAGS += -I$(INCLUDE) -I../include
LIBRARY = @LIBS@
-LIBRARY += @frameworks@
%.o : $(SRC_PATH)/%.cpp
$(CC) $(CFLAGS) $(DEFS) -c $(<) -o $(OBJECT_PATH)/$@
@@ -44,11 +42,14 @@ duplex : duplex.cpp $(OBJECTS)
testall : testall.cpp $(OBJECTS)
$(CC) $(CFLAGS) $(DEFS) -o testall testall.cpp $(OBJECT_PATH)/*.o $(LIBRARY)
-
clean :
-rm $(OBJECT_PATH)/*.o
-rm $(PROGRAMS)
-rm -f *.raw *~ *.exe
+ -rm -fR *.dSYM
+
+distclean: clean
+ -rm Makefile
strip :
strip $(PROGRAMS)