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.

48 lines
1.2KB

  1. #!/usr/bin/make -f
  2. # Makefile for WineASIO #
  3. # --------------------- #
  4. # Created by falkTX
  5. #
  6. VERSION = 1.3.0
  7. PREFIX ?= /usr
  8. all:
  9. @echo "error: you must pass '32' or '64' as an argument to this Makefile in order to build WineASIO"
  10. # ---------------------------------------------------------------------------------------------------------------------
  11. 32:
  12. $(MAKE) build ARCH=i386 M=32
  13. 64:
  14. $(MAKE) build ARCH=x86_64 M=64
  15. # ---------------------------------------------------------------------------------------------------------------------
  16. clean:
  17. rm -f *.o *.so
  18. rm -rf build32 build64
  19. rm -rf gui/__pycache__
  20. # ---------------------------------------------------------------------------------------------------------------------
  21. tarball: clean
  22. rm -f ../wineasio-$(VERSION).tar.gz
  23. tar -c -z \
  24. --exclude=".git*" \
  25. --exclude=debian \
  26. --transform='s,^\.,wineasio-$(VERSION),' \
  27. -f ../wineasio-$(VERSION).tar.gz .
  28. # ---------------------------------------------------------------------------------------------------------------------
  29. ifneq ($(ARCH),)
  30. ifneq ($(M),)
  31. include Makefile.mk
  32. endif
  33. endif
  34. # ---------------------------------------------------------------------------------------------------------------------