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.nt (471B)


      1 LIBS=
      2 
      3 FST_CPPFLAGS=-I../../fst -I.. -DFST_DONT_DEPRECATE_UNKNOWN=1
      4 FST_CXXFLAGS=-g -O0
      5 
      6 archs: w32/FstProxy.dll w64/FstProxy.dll
      7 
      8 w32/FstProxy.dll: CXX=i686-w64-mingw32-g++
      9 w64/FstProxy.dll: CXX=x86_64-w64-mingw32-g++
     10 
     11 FstProxy.dll w32/FstProxy.dll w64/FstProxy.dll: FstProxy.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 *.dll */*.dll