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.

71 lines
1.7KB

  1. ### Do not edit -- Generated by 'configure --with-whatever' from Makefile.in
  2. ### STK effects Makefile - for various flavors of unix
  3. PROGRAMS =
  4. RM = /bin/rm
  5. SRC_PATH = ../../src
  6. OBJECT_PATH = @object_path@
  7. vpath %.o $(OBJECT_PATH)
  8. OBJECTS = Stk.o Generator.o Envelope.o SineWave.o \
  9. Filter.o Delay.o DelayL.o OnePole.o \
  10. Effect.o Echo.o PitShift.o Chorus.o LentPitShift.o \
  11. PRCRev.o JCRev.o NRev.o FreeVerb.o \
  12. FileRead.o WvIn.o FileWvIn.o WaveLoop.o Skini.o Messager.o
  13. INCLUDE = @include@
  14. ifeq ($(strip $(INCLUDE)), )
  15. INCLUDE = ../../include
  16. endif
  17. vpath %.h $(INCLUDE)
  18. CC = @CXX@
  19. DEFS = @CPPFLAGS@
  20. DEFS += @byte_order@
  21. CFLAGS = @CXXFLAGS@
  22. CFLAGS += -I$(INCLUDE) -I$(INCLUDE)/../src/include
  23. LIBRARY = @LIBS@
  24. REALTIME = @realtime@
  25. ifeq ($(REALTIME),yes)
  26. PROGRAMS += effects
  27. OBJECTS += RtMidi.o RtAudio.o Thread.o Mutex.o Socket.o TcpServer.o @objects@
  28. endif
  29. RAWWAVES = @rawwaves@
  30. ifeq ($(strip $(RAWWAVES)), )
  31. RAWWAVES = ../../rawwaves/
  32. endif
  33. DEFS += -DRAWWAVE_PATH=\"$(RAWWAVES)\"
  34. %.o : $(SRC_PATH)/%.cpp $(OBJECT_PATH)/.placeholder
  35. $(CC) $(CFLAGS) $(DEFS) -c $(<) -o $(OBJECT_PATH)/$@
  36. %.o : ../../src/include/%.cpp $(OBJECT_PATH)/.placeholder
  37. $(CC) $(CFLAGS) $(DEFS) -c $(<) -o $(OBJECT_PATH)/$@
  38. all : $(PROGRAMS)
  39. $(OBJECT_PATH)/.placeholder:
  40. mkdir -vp $(OBJECT_PATH)
  41. touch $(OBJECT_PATH)/.placeholder
  42. effects: effects.cpp $(OBJECTS)
  43. $(CC) $(LDFLAGS) $(CFLAGS) $(DEFS) -o effects effects.cpp $(OBJECT_PATH)/*.o $(LIBRARY)
  44. libeffects: effects.cpp
  45. $(CC) $(LDFLAGS) $(CFLAGS) $(DEFS) -o effects effects.cpp -L../../src -lstk $(LIBRARY)
  46. $(OBJECTS) : Stk.h
  47. clean :
  48. $(RM) -f $(OBJECT_PATH)/*.o
  49. $(RM) -f $(PROGRAMS) *.exe
  50. $(RM) -fR *~ *.dSYM
  51. distclean: clean
  52. $(RM) Makefile
  53. strip :
  54. strip $(PROGRAMS)