mirror of https://github.com/pret/pokecrystal.git
Add an `init` makefile target to prevent data that can't be reasonably reproduced from being rebuilt.
This is only meant to be run once.
This commit is contained in:
parent
b74abd7c21
commit
b8da3874bb
|
@ -12,6 +12,7 @@ Note that this requires python2.7 for the moment.
|
||||||
git clone --recursive git://github.com/kanzure/pokecrystal.git
|
git clone --recursive git://github.com/kanzure/pokecrystal.git
|
||||||
easy_install pypng
|
easy_install pypng
|
||||||
cd pokecrystal
|
cd pokecrystal
|
||||||
|
make init
|
||||||
|
|
||||||
To build **pokecrystal.gbc**:
|
To build **pokecrystal.gbc**:
|
||||||
|
|
||||||
|
@ -36,6 +37,7 @@ In the shell, run:
|
||||||
git clone --recursive git://github.com/kanzure/pokecrystal.git
|
git clone --recursive git://github.com/kanzure/pokecrystal.git
|
||||||
easy_install pypng
|
easy_install pypng
|
||||||
cd pokecrystal
|
cd pokecrystal
|
||||||
|
make init
|
||||||
|
|
||||||
To build **pokecrystal.gbc**:
|
To build **pokecrystal.gbc**:
|
||||||
|
|
||||||
|
@ -56,6 +58,7 @@ In the **Cygwin terminal**:
|
||||||
git clone --recursive git://github.com/kanzure/pokecrystal.git
|
git clone --recursive git://github.com/kanzure/pokecrystal.git
|
||||||
easy_install pypng
|
easy_install pypng
|
||||||
cd pokecrystal
|
cd pokecrystal
|
||||||
|
make init
|
||||||
|
|
||||||
To build:
|
To build:
|
||||||
|
|
||||||
|
@ -77,7 +80,7 @@ VirtualBox. Follow these steps:
|
||||||
cd vagrantbox
|
cd vagrantbox
|
||||||
vagrant init pokecrystal
|
vagrant init pokecrystal
|
||||||
vagrant up
|
vagrant up
|
||||||
vagrant ssh -c "cd /vagrant && git clone --recursive git://github.com/kanzure/pokecrystal.git"
|
vagrant ssh -c "cd /vagrant && git clone --recursive git://github.com/kanzure/pokecrystal.git && cd pokecrystal && make init"
|
||||||
vagrant ssh
|
vagrant ssh
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
5
Makefile
5
Makefile
|
@ -79,6 +79,11 @@ pngs:
|
||||||
find . -iname "*.[12]bpp" -exec touch {} \;
|
find . -iname "*.[12]bpp" -exec touch {} \;
|
||||||
find . -iname "*.lz" -exec touch {} \;
|
find . -iname "*.lz" -exec touch {} \;
|
||||||
|
|
||||||
|
init:
|
||||||
|
find . -iname "*.[12]bpp" -exec touch {} \;
|
||||||
|
find . -iname "*.lz" -exec touch {} \;
|
||||||
|
|
||||||
|
|
||||||
%.2bpp: %.png ; $(gfx) 2bpp $<
|
%.2bpp: %.png ; $(gfx) 2bpp $<
|
||||||
%.1bpp: %.png ; $(gfx) 1bpp $<
|
%.1bpp: %.png ; $(gfx) 1bpp $<
|
||||||
%.lz: % ; $(gfx) lz $<
|
%.lz: % ; $(gfx) lz $<
|
||||||
|
|
Loading…
Reference in New Issue