gearmulator

Emulation of classic VA synths of the late 90s/2000s that are based on Motorola 56300 family DSPs
Log | Files | Refs | Submodules | README | LICENSE

Makefile (441B)


      1 FST_CPPFLAGS=-I../../fst -I.. -DFST_DONT_DEPRECATE_UNKNOWN=1
      2 FST_CXXFLAGS=-g -O0 -fPIC
      3 
      4 LIBS=
      5 
      6 archs: FstPlugin.32.so FstPlugin.64.so
      7 
      8 FstPlugin.32.so: ARCHFLAGS=-m32
      9 FstPlugin.64.so: ARCHFLAGS=-m64
     10 
     11 FstPlugin.so FstPlugin.32.so FstPlugin.64.so: FstPlugin.cpp ../../fst/fst.h ../fst_utils.h
     12 	$(CXX) -shared $(FST_CPPFLAGS) $(CPPFLAGS) $(FST_CXXFLAGS) $(CXXFLAGS) $(ARCHFLAGS) $< -o $@ $(LIBS)
     13 
     14 .PHONY: clean archs default
     15 clean:
     16 	rm -f *.so