aboutsummaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
Diffstat (limited to 'makefile')
-rw-r--r--makefile9
1 files changed, 7 insertions, 2 deletions
diff --git a/makefile b/makefile
index 85c41fb..c56966b 100644
--- a/makefile
+++ b/makefile
@@ -7,7 +7,7 @@ include $(dir $(lastword $(MAKEFILE_LIST)))/build-0.3/bootstrap.make
default := $(out_base)/
-.PHONY: $(default) test install clean
+.PHONY: $(default) test install dist dist-win clean
# Build.
#
@@ -21,6 +21,11 @@ test: $(out_base)/xsde/.test
#
install: $(out_base)/xsde/.install
+# Dist.
+#
+dist: $(out_base)/xsde/.dist
+dist-win: $(out_base)/xsde/.dist-win
+
# Clean.
#
clean: $(out_base)/libcult/.clean \
@@ -65,7 +70,7 @@ src_root := $(src_base)/xsde
scf_root := $(src_root)/build
out_root := $(src_root)
-ifneq ($(filter $(MAKECMDGOALS),clean test install),)
+ifneq ($(filter $(MAKECMDGOALS),clean test install dist dist-win),)
$(call import,$(src_base)/xsde/makefile)
else
$(call import,$(src_base)/xsde/xsde/makefile)