#--------------------------------------------------------------------------------- # Clear the implicit built in rules #--------------------------------------------------------------------------------- .SUFFIXES: #--------------------------------------------------------------------------------- ifeq ($(strip $(DEVKITPPC)),) $(error "Please set DEVKITPPC in your environment. export DEVKITPPC=devkitPPC") endif include $(DEVKITPPC)/wii_rules # Directories. OBJ_DIR := obj LIB_DIR := lib BIN_DIR := . SRC_DIR := src INCLUDE_DIR := include # Tools. PIPE_TO_SED := 2>&1 | sed "s/:\([0-9]*\):/\(\1\) :/" SYMLINKS=src/machdep src/osdep src/gfxdep src/joydep src/guidep src/sounddep src/threaddep # Source files. SRCS := $(wildcard $(SRC_DIR)/*.c $(SRC_DIR)/caps/*.c $(SRC_DIR)/dms/*.c $(SRC_DIR)/keymap/*.c) \ $(SRC_DIR)/machdep/support.c $(SRC_DIR)/gfxdep/rawkeys.c $(SRC_DIR)/guidep/gui-sdl.c $(SRC_DIR)/sounddep/sound.c \ $(SRC_DIR)/gfxdep/sdlgfx.c $(SRC_DIR)/guidep/menu.c $(SRC_DIR)/osdep/main.c $(SRC_DIR)/threaddep/thread.c \ $(SRC_DIR)/gfxdep/sdlkeys.c $(SRC_DIR)/joydep/joystick.c $(SRC_DIR)/osdep/memory.c SRCS := $(filter-out src/compemu_raw_x86.c src/compemu_fpp.c src/compemu_support.c src/svgancui.c src/build68k.c src/catweasel.c \ src/cdrom.c src/blkdev-libscg.c src/blkdev.c src/blitops.c src/akiko.c src/filesys_bootrom.c \ src/genblitter.c src/gencomp.c src/gencpu.c \ src/genlinetoscr.c src/compemu.c src/compstbl.c \ src/enforcer.c src/ar.c src/debug.c \ src/readdisk.c src/gengenblitter.c src/scsiemul.c src/tui.c src/linetoscr.c, $(SRCS)) genlinetoscr_args="-b" # Library object files. OBJS := $(subst $(SRC_DIR),$(OBJ_DIR),$(SRCS:.c=.o)) $(OBJ_DIR)/guidep/VirtualKeyboard.o # Test source files. # It can be useful to switch this variable around to select individual tests which are problematic. TEST_SRCS := $(TEST_SRC_DIR)/showfont.c # What's a full build? all: uae.dol src/tools/genlinetoscr.exe: cd src/tools/ && make -f Makefile.wii # How to delete the intermediate files. clean: @echo Cleaning $(OBJ_DIR) @rm -rf $(OBJS) $(OBJ_DIR) src/machdep src/target.h src/md-fpp.h src/sysconfig.h $(SYMLINKS) @rm -f src/blit.h src/blitfunc.c src/blitfunc.h src/blittable.c src/linetoscr.c @rm -f uae.dol uae.elf cd src/tools/ && make -f Makefile.wii clean $(OBJ_DIR): install -d $@ src/sysconfig.h: src/sysconfig.h.wii cp $< $@ src/machdep: rm -f $@ mkdir $@ && cd src/md-ppc-gcc && find . -maxdepth 1 -type f -exec ln '{}' ../machdep/'{}' ';' src/osdep: rm -f $@ mkdir $@ && cd src/od-generic && find . -maxdepth 1 -type f -exec ln '{}' ../osdep/'{}' ';' src/gfxdep: rm -f $@ mkdir $@ && cd src/gfx-sdl && find . -maxdepth 1 -type f -exec ln '{}' ../gfxdep/'{}' ';' src/joydep: rm -f $@ mkdir $@ && cd src/jd-sdl && find . -maxdepth 1 -type f -exec ln '{}' ../joydep/'{}' ';' src/guidep: rm -f $@ mkdir $@ && cd src/gui-sdl && find . -maxdepth 1 -type f -exec ln '{}' ../guidep/'{}' ';' src/sounddep: rm -f $@ mkdir $@ && cd src/sd-sdl && find . -maxdepth 1 -type f -exec ln '{}' ../sounddep/'{}' ';' src/threaddep: rm -f $@ mkdir $@ && cd src/td-sdl && find . -maxdepth 1 -type f -exec ln '{}' ../threaddep/'{}' ';' src/target.h: rm -f $@ cd src && ln -s targets/t-wii.h target.h src/md-fpp.h: rm -f $@ cd src && ln -s include/fpp-ieee.h md-fpp.h src/blit.h: src/tools/genblitter.exe src/tools/genblitter.exe i >$@ src/blitfunc.c: src/tools/genblitter.exe src/blitfunc.h src/tools/genblitter.exe f >$@ src/blitfunc.h: src/tools/genblitter.exe src/tools/genblitter.exe h >$@ src/blittable.c: src/tools/genblitter.exe src/blitfunc.h src/tools/genblitter.exe t >$@ src/linetoscr.c: src/tools/genlinetoscr.exe src/tools/genlinetoscr.exe $(genlinetoscr_args) >$@ %.h: %.h.wii cp $< $@ %.c: %.c.wii cp $< $@ # How to build a library. $(LIB_DIR)/libSDL_ttf.a: $(OBJS) @echo Archiving $@ @-mkdir -p $(dir $@) @powerpc-eabi-ar crs $@ $(OBJS) @echo ---- # How to build a DOL. uae.dol: uae.elf @echo Creating DOL $@ @-mkdir -p $(dir $@) #powerpc-eabi-objcopy -O binary $< $@ elf2dol $< $@ @echo ---- # Compilation flags. COMMON_FLAGS := -g -O3 -G8 -mrvl -Wall -D__inline__=__inline__ $(MACHDEP) -Wno-unused-variable INCLUDES := -Isrc/md-generic/ -Isrc/include -Isrc -I$(DEVKITPRO)/libogc/include -I$(DEVKITPRO)/libogc/include/SDL -I$(PORTLIBS)/include DEFINES := -DOS_WITHOUT_MEMORY_MANAGEMENT -DSAVESTATE -DUSE_SDL -DSUPPORT_THREADS -DCPUEMU_0 -DCPUEMU_5 -DCPUEMU_6 \ -DFPUEMU -DAGA -DAUTOCONFIG -DFILESYS \ -DTD_START_HEIGHT=16 CFLAGS := $(COMMON_FLAGS) $(INCLUDES) $(DEFINES) #unused defines; -DFDI2RAW # Test link flags. LDFLAGS := $(COMMON_FLAGS) -L$(LIB_DIR) -L$(PORTLIBS)/lib -L$(DEVKITPRO)/libogc/lib -L$(DEVKITPRO)/libogc/lib/wii -lz -lSDL_ttf -lSDL -lfreetype -lfat -lwiiuse -lbte -logc -lm -lwiikeyboard -ltinysmb dist:uae.dol install -d $@/apps/uae install -d $@/uae install -d $@/uae/floppies install -d $@/uae/roms install -d $@/uae/harddisks install -d $@/uae/saves echo "dummy" > $@/uae/roms/put-your-kick-dot-rom-here echo "dummy" > $@/uae/floppies/dummy echo "dummy" > $@/uae/harddisks/dummy echo "dummy" > $@/uae/saves/dummy cp $< $@/apps/uae/boot.dol cp meta.xml $@/apps/uae/ cp icon.png $@/apps/uae/ cp FreeMono.ttf $@/apps/uae/ cp Smaller.ttf $@/apps/uae/ cp README.Cloanto-Amiga_Forever $@/apps/uae/ cp uaerc.wii $@/uae/uaerc cp uaerc.smb $@/uae/ cp docs/configuration.txt $@/apps/uae/ cp docs/Joystick_mapping.txt $@/apps/uae/ cd $@ && tar -czf ../uae-wii-bin.tar.gz * distsource: cd .. && cp uae-wii uae-wii-v cd ../uae-wii-v && find . -name ".svn" | xargs rm -rf cd .. && tar -czf uae-wii-v.tar.gz uae-wii-v #--------------------------------------------------------------------------------- run: wiiload uae.dol # How to link an ELF. uae.elf: src/tools/genlinetoscr.exe src/blit.h src/blitfunc.c src/blitfunc.h src/blittable.c src/linetoscr.c $(SYMLINKS) src/target.h src/md-fpp.h src/sysconfig.h $(OBJS) @echo Linking $@ @-mkdir -p $(dir $@) $(CXX) -o $@ $(OBJS) $(LDFLAGS) #keep elf for debugging #cp $@ /tmp/elf # How to compile C file (SDL library). $(OBJ_DIR)/%.o: $(SRC_DIR)/%.c @echo Compiling $< @-mkdir -p $(dir $@) @$(CC) $(CFLAGS) -c $< -o $@ $(PIPE_TO_SED) $(OBJ_DIR)/%.o: $(SRC_DIR)/%.cpp @echo Compiling $< @-mkdir -p $(dir $@) @$(CXX) $(CFLAGS) -c $< -o $@ $(PIPE_TO_SED)