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.

48 lines
829B

  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 = @debug@
  10. DEFS += @audio_apis@
  11. CFLAGS = @CFLAGS@ -Iinclude
  12. CFLAGS += @warn@
  13. all : $(LIBRARY)
  14. tests:
  15. cd tests && $(MAKE) all
  16. $(LIBRARY): $(OBJECTS)
  17. $(AR) ruv $(LIBRARY) $(OBJECTS)
  18. ranlib $(LIBRARY)
  19. %.o : %.cpp
  20. $(CC) $(CFLAGS) $(DEFS) -c $(<) -o $@
  21. %.o : include/%.cpp
  22. $(CC) $(CFLAGS) $(DEFS) -c $(<) -o $@
  23. clean :
  24. -rm -f $(LIBRARY)
  25. -rm -f $(OBJECTS)
  26. -rm -f *~
  27. cd tests && $(MAKE) clean
  28. distclean: clean
  29. -rm -rf config.log autom4te.cache Makefile rtaudio-config
  30. cd tests && $(MAKE) distclean
  31. strip :
  32. strip $(LIBRARY)
  33. ranlib $(LIBRARY)
  34. cd tests && $(MAKE) strip