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.

15 lines
313B

  1. SLUG = MrLumps
  2. VERSION = 0.5.2
  3. SOURCES = $(wildcard src/*.cpp)
  4. # Must include the VCV plugin Makefile framework
  5. include ../../plugin.mk
  6. dist: all
  7. mkdir -p dist/$(SLUG)
  8. cp LICENSE* dist/$(SLUG)/
  9. cp $(TARGET) dist/$(SLUG)/
  10. cp -R res dist/$(SLUG)/
  11. cd dist && zip -5 -r $(SLUG)-$(VERSION)-$(ARCH).zip $(SLUG)