aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index e93e47b..97523e6 100644
--- a/Makefile
+++ b/Makefile
@@ -17,14 +17,14 @@ include ../../plugin.mk
# Convenience target for including files in the distributable release
-DIST_NAME = Template
+DIST_NAME = solmods
.PHONY: dist
dist: all
ifndef VERSION
$(error VERSION must be defined when making distributables)
endif
mkdir -p dist/$(DIST_NAME)
- cp LICENSE* dist/$(DIST_NAME)/
+ cp LICENSE* README* dist/$(DIST_NAME)/
cp $(TARGET) dist/$(DIST_NAME)/
cp -R res dist/$(DIST_NAME)/
cd dist && zip -5 -r $(DIST_NAME)-$(VERSION)-$(ARCH).zip $(DIST_NAME)