ASIO to JACK driver for WINE
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.

33 lines
870B

  1. #!/usr/bin/make -f
  2. # Makefile for WineASIO #
  3. # --------------------- #
  4. # Created by falkTX
  5. #
  6. all:
  7. @echo "error: you must pass '32' or '64' as an argument to this Makefile in order to build WineASIO"
  8. # ---------------------------------------------------------------------------------------------------------------------
  9. 32:
  10. $(MAKE) build ARCH=i386 M=32
  11. 64:
  12. $(MAKE) build ARCH=x86_64 M=64
  13. # ---------------------------------------------------------------------------------------------------------------------
  14. clean::
  15. rm -f *.o *.so
  16. rm -rf build32 build64
  17. # ---------------------------------------------------------------------------------------------------------------------
  18. ifneq ($(ARCH),)
  19. ifneq ($(M),)
  20. include Makefile.mk
  21. endif
  22. endif
  23. # ---------------------------------------------------------------------------------------------------------------------