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 library Makefile
-
- RM = /bin/rm
-
- OBJECTS = RtAudio.o @objects@
-
- LIBRARY = librtaudio.a
-
- CC = @CXX@
- AR = @AR@
- RANLIB = @RANLIB@
-
- DEFS = @CPPFLAGS@
- CFLAGS = @CXXFLAGS@ -Iinclude
-
- all : $(LIBRARY)
-
- tests:
- cd tests && $(MAKE) all
-
- $(LIBRARY): $(OBJECTS)
- $(AR) ruv $(LIBRARY) $(OBJECTS)
- ranlib $(LIBRARY)
-
- %.o : %.cpp
- $(CC) $(CFLAGS) $(DEFS) -c $(<) -o $@
-
- %.o : include/%.cpp
- $(CC) $(CFLAGS) $(DEFS) -c $(<) -o $@
-
- clean :
- -rm -f $(LIBRARY)
- -rm -f $(OBJECTS)
- -rm -f *~
- cd tests && $(MAKE) clean
-
- distclean: clean
- -rm -rf config.log autom4te.cache Makefile rtaudio-config
- cd tests && $(MAKE) distclean
-
- strip :
- strip $(LIBRARY)
- ranlib $(LIBRARY)
- cd tests && $(MAKE) strip
|