diff options
| author | XaviDCR92 <xavi.dcr@gmail.com> | 2017-09-16 12:50:06 +0200 |
|---|---|---|
| committer | XaviDCR92 <xavi.dcr@gmail.com> | 2017-09-16 12:50:06 +0200 |
| commit | 286d13d71d017003df4cb44fc4ef4822d9e39c03 (patch) | |
| tree | 9acd1c112dab1e2b97c1949a06115f069173a06a /Source | |
| parent | d60819e75a87f0ad369a5d5c5e43637ce8876635 (diff) | |
| download | airport-286d13d71d017003df4cb44fc4ef4822d9e39c03.tar.gz | |
Renamed BMP/WAV data to uppercase (Linux case-sensitivity).
Diffstat (limited to 'Source')
| -rwxr-xr-x[-rw-r--r--] | Source/Exe/AIRPORT.elf | bin | 326444 -> 326468 bytes | |||
| -rw-r--r-- | Source/Exe/AIRPORT.iso | bin | 0 -> 1439744 bytes | |||
| -rw-r--r-- | Source/Makefile | 5 |
3 files changed, 4 insertions, 1 deletions
diff --git a/Source/Exe/AIRPORT.elf b/Source/Exe/AIRPORT.elf Binary files differindex 1f890ed..08bad33 100644..100755 --- a/Source/Exe/AIRPORT.elf +++ b/Source/Exe/AIRPORT.elf diff --git a/Source/Exe/AIRPORT.iso b/Source/Exe/AIRPORT.iso Binary files differnew file mode 100644 index 0000000..14766ca --- /dev/null +++ b/Source/Exe/AIRPORT.iso diff --git a/Source/Makefile b/Source/Makefile index e6de697..4beb71b 100644 --- a/Source/Makefile +++ b/Source/Makefile @@ -22,7 +22,7 @@ CC_FLAGS = -Wall -Werror -c -Os -Wfatal-errors # Path definitions PSXSDK_PATH = /usr/local/psxsdk PATH := $(PATH):$(PSXSDK_PATH)/bin/ -PROJECT_DIR = ~/$(PROJECT) +PROJECT_DIR = ~/Airport CDROM_ROOT=$(PROJECT_DIR)/cdimg BIN_TARGET_PATH = $(PROJECT_DIR)/Bin @@ -127,6 +127,9 @@ clean: rm -f $(OBJ_LEVELS_DIR)/*.PLT rm -f $(OBJ_SPRITES_PATH)/*.TIM rm -f $(OBJ_FONTS_PATH)/*.TIM + +$(OBJ_DIR)/%.d: $(SRC_DIR)/%.c + $(CC) $< $(DEFINE) $(CC_FLAGS) -MM > $@ $(OBJ_DIR)/%.o: $(SRC_DIR)/%.c $(OBJ_DIR)/%.d $(CC) $< -o $@ $(DEFINE) $(CC_FLAGS) -MMD |
