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.

46 lines
792B

  1. ### Do not edit -- Generated by 'configure --with-whatever' from Makefile.in
  2. ### RtAudio library Makefile
  3. RM = /bin/rm
  4. OBJECTS = RtAudio.o @objects@
  5. LIBRARY = librtaudio.a
  6. CC = @CXX@
  7. AR = @AR@
  8. RANLIB = @RANLIB@
  9. DEFS = @CPPFLAGS@
  10. CFLAGS = @CXXFLAGS@ -Iinclude
  11. all : $(LIBRARY)
  12. tests:
  13. cd tests && $(MAKE) all
  14. $(LIBRARY): $(OBJECTS)
  15. $(AR) ruv $(LIBRARY) $(OBJECTS)
  16. ranlib $(LIBRARY)
  17. %.o : %.cpp
  18. $(CC) $(CFLAGS) $(DEFS) -c $(<) -o $@
  19. %.o : include/%.cpp
  20. $(CC) $(CFLAGS) $(DEFS) -c $(<) -o $@
  21. clean :
  22. -rm -f $(LIBRARY)
  23. -rm -f $(OBJECTS)
  24. -rm -f *~
  25. cd tests && $(MAKE) clean
  26. distclean: clean
  27. -rm -rf config.log autom4te.cache Makefile rtaudio-config
  28. cd tests && $(MAKE) distclean
  29. strip :
  30. strip $(LIBRARY)
  31. ranlib $(LIBRARY)
  32. cd tests && $(MAKE) strip