mirror of
https://github.com/coop-deluxe/sm64coopdx.git
synced 2024-11-15 00:35:06 +00:00
b3ed387711
- Added support for coop-specific actors - Added support for coop-specific geo functions - Added support for coop-specific model functions
15 lines
442 B
Makefile
15 lines
442 B
Makefile
# ----------------------
|
|
# Dynamic Options System
|
|
# ----------------------
|
|
|
|
DYNOS_INPUT_DIR := ./dynos
|
|
DYNOS_OUTPUT_DIR := $(BUILD_DIR)/dynos
|
|
DYNOS_PACKS_DIR := $(BUILD_DIR)/dynos/packs
|
|
DYNOS_INIT := \
|
|
mkdir -p $(DYNOS_INPUT_DIR); \
|
|
mkdir -p $(DYNOS_OUTPUT_DIR); \
|
|
mkdir -p $(DYNOS_PACKS_DIR); \
|
|
cp -f -r $(DYNOS_INPUT_DIR) $(BUILD_DIR) 2>/dev/null || true ;
|
|
|
|
DYNOS_DO := $(shell $(call DYNOS_INIT))
|
|
INCLUDE_CFLAGS += -DDYNOS
|