Skip to content

Commit 4e25c42

Browse files
committed
Remove old tree making from the Makefile so Travis works.
1 parent 180eb9c commit 4e25c42

File tree

1 file changed

+2
-7
lines changed

1 file changed

+2
-7
lines changed

Makefile

+2-7
Original file line numberDiff line numberDiff line change
@@ -4,28 +4,23 @@
44

55
PROJ_NAME = $(shell basename `pwd`)
66

7-
TREE_SRC := tree.yml
8-
TREE := GameData/RP-0/Tree.cfg
9-
107
AVC := GameData/RP-0/RP-0.version
118

129
VERSION := $(shell git describe --tags)
1310

1411
ZIPFILE := $(PROJ_NAME)-$(VERSION).zip
1512

16-
all: $(TREE) $(AVC)
13+
all: $(AVC)
1714

1815
release: $(ZIPFILE)
1916

20-
$(TREE): $(TREE_SRC)
21-
bin/yml2mm
2217

2318
# Always rebuild AVC files, because it depends upon
2419
# git version info, which Make can't comprehend.
2520
$(AVC): FORCE
2621
bin/makeversion
2722

28-
$(ZIPFILE): $(TREE) $(AVC)
23+
$(ZIPFILE): $(AVC)
2924
zip -r $(ZIPFILE) README.md LICENSE.md GameData
3025

3126
# This is a magic target that forces anything that

0 commit comments

Comments
 (0)