mirror of
https://github.com/n64decomp/mk64
synced 2026-07-31 15:57:11 -04:00
1b659170dc
* Make adjustments to the Mario Raceway course file Added quotes in "*.mk" to the find command for finding the .mk files. * Make adjustments to the Choco Mountain course file * Make adjustments to the Frappe Snowland course file * Make adjustments to the Toad's Turnpike course file * Make adjustments to the Moo Moo Farm course file * Make adjustments to the Luigi Raceway course file * Make adjustments to the Koopa Troopa Beach course file * Make adjustments to the Kalimari Desert course file * Make adjustments to the Bowser's Castle course file * Make adjustements to the Wario Stadium course file * Make adjustments to the Sherbet Land course file * Make adjustments to the Royal Raceway course file * Make adjustments to the Banshee Boardwalk course file * Make adjustments to the Yoshi Valley course file * Make adjustments to the Rainbow Road course file * Make adjustments to the Big Donut course file * Make adjustments to the Block Fort course file * Remove some unneeded lines from the Makefile Signed-off-by: Taggerung <tyler.taggerung@email.com>
21 lines
672 B
Makefile
21 lines
672 B
Makefile
CHOCO_MOUNTAIN_DIR := assets/courses/choco_mountain
|
|
|
|
CHOCO_MOUNTAIN_PNG := \
|
|
$(CHOCO_MOUNTAIN_DIR)/gTextureChocoMountainWall.png \
|
|
$(CHOCO_MOUNTAIN_DIR)/gTextureChocoMountainRock.png
|
|
|
|
CHOCO_MOUNTAIN_EXPORT_SENTINEL := $(CHOCO_MOUNTAIN_DIR)/.export
|
|
|
|
ASSET_DIRECTORIES += $(CHOCO_MOUNTAIN_DIR)
|
|
|
|
$(BUILD_DIR)/courses/flower_cup/choco_mountain/course_data.inc.o: $(CHOCO_MOUNTAIN_PNG:%.png=%.inc.c)
|
|
|
|
$(CHOCO_MOUNTAIN_PNG:%.png=%.inc.c): %.inc.c : %.png
|
|
$(N64GRAPHICS) -i $@ -g $< -s u8 -f rgba16
|
|
|
|
$(CHOCO_MOUNTAIN_PNG): $(CHOCO_MOUNTAIN_EXPORT_SENTINEL) ;
|
|
|
|
$(CHOCO_MOUNTAIN_EXPORT_SENTINEL): $(ASSET_DIR)/courses/choco_mountain.json
|
|
$(ASSET_EXTRACT) $(BASEROM) $<
|
|
touch $@
|