mirror of
https://github.com/Oibaf66/uae-wii.git
synced 2024-11-25 03:56:55 +01:00
Correct Wii makefile and fix clean rule
This commit is contained in:
parent
db1b3ae0e5
commit
fc58a6f6f8
@ -38,7 +38,7 @@ all: uae-host.elf
|
||||
# How to delete the intermediate files.
|
||||
clean:
|
||||
@echo Cleaning $(OBJ_DIR)
|
||||
@rm -f $(OBJS)
|
||||
@rm -f $(OBJS) src/machdep
|
||||
|
||||
$(OBJ_DIR):
|
||||
install -d $@
|
||||
|
@ -43,7 +43,7 @@ all: uae.dol
|
||||
# How to delete the intermediate files.
|
||||
clean:
|
||||
@echo Cleaning $(OBJ_DIR)
|
||||
@rm -f $(OBJS)
|
||||
@rm -f $(OBJS) src/machdep
|
||||
|
||||
$(OBJ_DIR):
|
||||
install -d $@
|
||||
@ -51,6 +51,10 @@ $(OBJ_DIR):
|
||||
src/sysconfig.h: src/sysconfig.h.wii
|
||||
cp $< $@
|
||||
|
||||
src/machdep:
|
||||
rm -f $@
|
||||
cd src && ln -s md-ppc-gcc machdep
|
||||
|
||||
%.h: %.h.wii
|
||||
cp $< $@
|
||||
|
||||
@ -84,7 +88,7 @@ CFLAGS := $(COMMON_FLAGS) $(INCLUDES) $(DEFINES)
|
||||
LDFLAGS := $(COMMON_FLAGS) -L$(LIB_DIR) -L$(DEVKITPRO)/libogc/lib/wii -lz -lSDL_ttf -lSDL -lfreetype -lfat -lwiiuse -lbte -logc -lm
|
||||
|
||||
# How to link an ELF.
|
||||
uae.elf: src/sysconfig.h $(OBJS)
|
||||
uae.elf: src/machdep src/sysconfig.h $(OBJS)
|
||||
@echo Linking $@
|
||||
@-mkdir -p $(dir $@)
|
||||
powerpc-gekko-g++ -o $@ $(OBJS) $(LDFLAGS)
|
||||
|
Loading…
Reference in New Issue
Block a user