From 286d13d71d017003df4cb44fc4ef4822d9e39c03 Mon Sep 17 00:00:00 2001 From: XaviDCR92 Date: Sat, 16 Sep 2017 12:50:06 +0200 Subject: Renamed BMP/WAV data to uppercase (Linux case-sensitivity). --- Source/Exe/AIRPORT.elf | Bin 326444 -> 326468 bytes Source/Exe/AIRPORT.iso | Bin 0 -> 1439744 bytes Source/Makefile | 5 ++++- 3 files changed, 4 insertions(+), 1 deletion(-) mode change 100644 => 100755 Source/Exe/AIRPORT.elf create mode 100644 Source/Exe/AIRPORT.iso (limited to 'Source') diff --git a/Source/Exe/AIRPORT.elf b/Source/Exe/AIRPORT.elf old mode 100644 new mode 100755 index 1f890ed..08bad33 Binary files a/Source/Exe/AIRPORT.elf and b/Source/Exe/AIRPORT.elf differ diff --git a/Source/Exe/AIRPORT.iso b/Source/Exe/AIRPORT.iso new file mode 100644 index 0000000..14766ca Binary files /dev/null and b/Source/Exe/AIRPORT.iso differ 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 -- cgit v1.2.3