get rid of annoying makeversion.py, install.py

git-svn-id: svn://svn.icculus.org/netradiant/trunk@27 61c419a2-8eb2-4b30-bcec-8cead039b335
This commit is contained in:
rpolzer 2008-09-15 09:08:43 +00:00
parent 4396919d7b
commit fc6bdf7367
2 changed files with 2 additions and 4 deletions

View File

@ -5,8 +5,7 @@
instead
* q2data: remove RSA security copyrighted md4.c, using mdfour.c from DP
instead as a drop-in replacement
* all: get rid of makeversion.py dependency (still need Python for
install.py)
* all: get rid of makeversion.py and install.py
2008-09-13 Rudolf Polzer divVerent(at)alientrap.org
* q3map2: update to ZeroRadiant's q3map2

View File

@ -470,14 +470,13 @@ makeversion:
.PHONY: install-data
install-data:
$(MKDIR) install/games
set -ex; \
for GAME in games/*; do \
for GAMEFILE in $$GAME/games/*.game; do \
$(MKDIR) install/games; \
$(CP) "$$GAMEFILE" install/games/; \
done; \
for GAMEDIR in $$GAME/*.game; do \
$(MKDIR) install; \
$(CP_R) "$$GAMEDIR" install/; \
done; \
done