diff options
| author | miguel <miguel@localhost> | 2017-09-23 23:13:25 +0200 |
|---|---|---|
| committer | miguel <miguel@localhost> | 2017-09-23 23:13:25 +0200 |
| commit | 41c2d41746582db5439dc51a3c35b60384ea1e4a (patch) | |
| tree | b6662d7be627fe298c877b13f22c77b20e6ad71a /Makefile | |
| parent | dc71cc317b960c5320cdd00171e4d1b37d4144bd (diff) | |
integrated perlin noise map into game as minimap
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -3,7 +3,7 @@ CPPFLAGS = $(shell sdl2-config --cflags --libs) run: game ./game -game: World.o main.o +game: World.o main.o PerlinNoise.o $(CXX) -o $@ $(CPPFLAGS) $^ clean: @@ -15,4 +15,5 @@ clean: browser-game: emcc --std=c++11 -O2 World.cpp -o World.bc emcc --std=c++11 -O2 main.cpp -o main.bc - emcc -O2 World.bc main.bc -o lunatic_out.html -s USE_SDL=2 --preload-file music.wav --preload-file coin.wav --preload-file coin.bmp --preload-file earth01.bmp --preload-file fonts.bmp --preload-file gridder01.bmp --preload-file guy01.bmp --preload-file guy02.bmp --preload-file gridder02.bmp --preload-file gridder03.bmp -s TOTAL_MEMORY=536870912 --shell-file shell_minimal.html + emcc --std=c++11 -O2 PerlinNoise.cpp -o PerlinNoise.bc + emcc -O2 World.bc main.bc PerlinNoise.bc -o lunatic_out.html -s USE_SDL=2 --preload-file music.wav --preload-file coin.wav --preload-file coin.bmp --preload-file earth01.bmp --preload-file fonts.bmp --preload-file gridder01.bmp --preload-file guy01.bmp --preload-file guy02.bmp --preload-file gridder02.bmp --preload-file gridder03.bmp -s TOTAL_MEMORY=536870912 --shell-file shell_minimal.html |
