| summaryrefslogtreecommitdiff | 
diff options
| author | Nathanael Sensfelder <SpamShield0@MultiAgentSystems.org> | 2018-09-06 21:01:36 +0200 | 
|---|---|---|
| committer | Nathanael Sensfelder <SpamShield0@MultiAgentSystems.org> | 2018-09-06 21:01:36 +0200 | 
| commit | d34375f7338a1397e8480e875baf5862138ed528 (patch) | |
| tree | dcb5229a6b6f506b843b8fbdc1b19108a60227a7 /src/asset | |
| parent | 9e684761e12ad31d8c5996e7f960fd99b1f8f23e (diff) | |
Fixes miss in Makefile, adds a sanity check.
Diffstat (limited to 'src/asset')
| -rw-r--r-- | src/asset/Makefile | 5 | 
1 files changed, 4 insertions, 1 deletions
| diff --git a/src/asset/Makefile b/src/asset/Makefile index ab464b2..b6bebcd 100644 --- a/src/asset/Makefile +++ b/src/asset/Makefile @@ -34,6 +34,9 @@ reset:  ################################################################################  ## INTERNAL RULES ##############################################################  ################################################################################ -$(TILE_WITNESS): $(TILE_CLASSES_FILES) $(TILE_FRONTIER_FILES) +$(TILE_WITNESS): $(WWW_TILES_DIR) $(TILE_CLASSES_FILES) $(TILE_FRONTIER_FILES)  	$(GEN_ALL_TILES_EXEC) $(WWW_TILES_DIR) $(TILE_CLASSES_DIR) $(TILE_FRONTIER_DIR)  	touch $@ + +$(WWW_TILES_DIR): +	mkdir -p $@ | 


