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 (424B)


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