We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 180eb9c commit 4e25c42Copy full SHA for 4e25c42
Makefile
@@ -4,28 +4,23 @@
4
5
PROJ_NAME = $(shell basename `pwd`)
6
7
-TREE_SRC := tree.yml
8
-TREE := GameData/RP-0/Tree.cfg
9
-
10
AVC := GameData/RP-0/RP-0.version
11
12
VERSION := $(shell git describe --tags)
13
14
ZIPFILE := $(PROJ_NAME)-$(VERSION).zip
15
16
-all: $(TREE) $(AVC)
+all: $(AVC)
17
18
release: $(ZIPFILE)
19
20
-$(TREE): $(TREE_SRC)
21
- bin/yml2mm
22
23
# Always rebuild AVC files, because it depends upon
24
# git version info, which Make can't comprehend.
25
$(AVC): FORCE
26
bin/makeversion
27
28
-$(ZIPFILE): $(TREE) $(AVC)
+$(ZIPFILE): $(AVC)
29
zip -r $(ZIPFILE) README.md LICENSE.md GameData
30
31
# This is a magic target that forces anything that
0 commit comments