You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- ### Do not edit -- Generated by 'configure --with-whatever' from Makefile.in
- ### RtAudio tests Makefile - for various flavors of unix and MinGW
-
- PROGRAMS = audioprobe playsaw playraw record duplex testall teststops
- RM = /bin/rm
- SRC_PATH = ..
- INCLUDE = ..
- OBJECT_PATH = @object_path@
- vpath %.o $(OBJECT_PATH)
-
- OBJECTS = RtAudio.o @objects@
-
- CC = @CXX@
- DEFS = @CPPFLAGS@
- CFLAGS = @CXXFLAGS@
- CFLAGS += -I$(INCLUDE) -I../include
- LIBRARY = @LIBS@
-
- %.o : $(SRC_PATH)/%.cpp
- $(CC) $(CFLAGS) $(DEFS) -c $(<) -o $(OBJECT_PATH)/$@
-
- %.o : ../include/%.cpp
- $(CC) $(CFLAGS) $(DEFS) -c $(<) -o $(OBJECT_PATH)/$@
-
- all : $(PROGRAMS)
-
- audioprobe : audioprobe.cpp $(OBJECTS)
- $(CC) $(CFLAGS) $(DEFS) -o audioprobe audioprobe.cpp $(OBJECT_PATH)/*.o $(LIBRARY)
-
- playsaw : playsaw.cpp $(OBJECTS)
- $(CC) $(CFLAGS) $(DEFS) -o playsaw playsaw.cpp $(OBJECT_PATH)/*.o $(LIBRARY)
-
- playraw : playraw.cpp $(OBJECTS)
- $(CC) $(CFLAGS) $(DEFS) -o playraw playraw.cpp $(OBJECT_PATH)/*.o $(LIBRARY)
-
- record : record.cpp $(OBJECTS)
- $(CC) $(CFLAGS) $(DEFS) -o record record.cpp $(OBJECT_PATH)/*.o $(LIBRARY)
-
- duplex : duplex.cpp $(OBJECTS)
- $(CC) $(CFLAGS) $(DEFS) -o duplex duplex.cpp $(OBJECT_PATH)/*.o $(LIBRARY)
-
- testall : testall.cpp $(OBJECTS)
- $(CC) $(CFLAGS) $(DEFS) -o testall testall.cpp $(OBJECT_PATH)/*.o $(LIBRARY)
-
- teststops : teststops.cpp $(OBJECTS)
- $(CC) $(CFLAGS) $(DEFS) -o teststops teststops.cpp $(OBJECT_PATH)/*.o $(LIBRARY)
-
- clean :
- $(RM) -f $(OBJECT_PATH)/*.o
- $(RM) -f $(PROGRAMS)
- $(RM) -f *.raw *~ *.exe
- $(RM) -fR *.dSYM
-
- distclean: clean
- $(RM) -f Makefile
-
- strip :
- strip $(PROGRAMS)
|