diff options
| author | scarab <scarab@0ee4d065-81f0-4d1e-b06c-ff20ad07cc3e> | 2008-07-05 16:43:55 +0000 |
|---|---|---|
| committer | scarab <scarab@0ee4d065-81f0-4d1e-b06c-ff20ad07cc3e> | 2008-07-05 16:43:55 +0000 |
| commit | 6c4fe3323d79253af707df90623e433ce12c35f2 (patch) | |
| tree | 36ca640e6865abc26789760ba9fd09a023eb0ba1 /Makefile | |
| parent | 6ed79c5de77b3f6be5c297cb5432d123ff1ff177 (diff) | |
* Prechod na novou verzi instalace pseudoautotools -> cmake
* Odstraneni bordelu kterej tu byl (pokud vam neco chybi brecte na me ja to zkusim najit v zaloze)
* TODO instalace: SEPSAT AUTORY, IKONKU VYROBIT
git-svn-id: http://opensvn.csie.org/tuxanci_ng@94 0ee4d065-81f0-4d1e-b06c-ff20ad07cc3e
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 75 |
1 files changed, 0 insertions, 75 deletions
diff --git a/Makefile b/Makefile deleted file mode 100644 index 3a00d40..0000000 --- a/Makefile +++ /dev/null @@ -1,75 +0,0 @@ -DESTDIR:=/usr/local - -all: - make -C ./src - -clean: - make -C ./src clean - -run: - ./tuxanci-ng.sh - -srun: - ./publicserver.sh - -package: - ./deb-build.sh - -tarball: - ./tarball-build.sh - -tarballbin: - ./tarballbin-build.sh - -kill: - kill -9 `pidof publicserver` - -stat: - cat /proc/`pidof publicserver`/status - -tuxstat: - cat /proc/`pidof tuxanci-ng`/status - -core: - gcore `pidof publicserver` - -svn: - svn ci - -svnr: - svn co http://opensvn.csie.org/tuxanci_ng/ - -server: - make -C ./src -f Makefile-server - -nosound: - make -C ./src -f Makefile-nosound - -mod: - make -C ./modules -f Makefile modTeleport - make -C ./modules -f Makefile modPipe - make -C ./modules -f Makefile modWall - make -C ./modules -f Makefile modAI - -servermod: - make -C ./modules -f Makefile-publicserver modTeleport - make -C ./modules -f Makefile-publicserver modPipe - make -C ./modules -f Makefile-publicserver modWall - -install: - mkdir -p $(DESTDIR)/bin - mkdir -p $(DESTDIR)/share/tuxanci-ng/{arena,data,font,image,lang,music,sound,conf,modules} - cp ./src/tuxanci-ng $(DESTDIR)/bin/ - - cp -rf ./arena/* $(DESTDIR)/share/tuxanci-ng/arena/ - cp -rf ./font/* $(DESTDIR)/share/tuxanci-ng/font/ - cp -rf ./image/* $(DESTDIR)/share/tuxanci-ng/image/ - cp -rf ./lang/* $(DESTDIR)/share/tuxanci-ng/lang/ - cp -rf ./music/* $(DESTDIR)/share/tuxanci-ng/music/ - cp -rf ./sound/* $(DESTDIR)/share/tuxanci-ng/sound/ - cp -rf ./data/* $(DESTDIR)/share/tuxanci-ng/data/ - cp -rf ./conf/* $(DESTDIR)/share/tuxanci-ng/conf/ - cp -rf ./modules/*.so $(DESTDIR)/share/tuxanci-ng/modules/ - -uninstall: - rm -rf $(DESTDIR)/{bin,share}/tuxanci-ng |