Makefile 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160
  1. #---------------------------------------------------------------------------------
  2. # Clear the implicit built in rules
  3. #---------------------------------------------------------------------------------
  4. .SUFFIXES:
  5. #---------------------------------------------------------------------------------
  6. ifeq ($(strip $(DEVKITPPC)),)
  7. $(error "Please set DEVKITPPC in your environment. export DEVKITPPC=<path to>devkitPPC")
  8. endif
  9. #---------------------------------------------------------------------------------
  10. # build for wii by default, make HW_TYPE=gamecube will do what it sounds like
  11. # NOTE: gamecube build may require use of dollz3 before running, if sending over BBA
  12. #---------------------------------------------------------------------------------
  13. HW_TYPE = wii
  14. include $(DEVKITPPC)/$(HW_TYPE)_rules
  15. #---------------------------------------------------------------------------------
  16. # TARGET is the name of the output
  17. # BUILD is the directory where object files & intermediate files will be placed
  18. # SOURCES is a list of directories containing source code
  19. # INCLUDES is a list of directories containing extra header files
  20. #---------------------------------------------------------------------------------
  21. TARGET := $(notdir $(CURDIR))_$(HW_TYPE)
  22. BUILD := build
  23. SOURCES := . emu
  24. RESOURCES := ../resources
  25. DATA := data
  26. INCLUDES := include ../Core/Common .
  27. #---------------------------------------------------------------------------------
  28. # options for code generation
  29. #---------------------------------------------------------------------------------
  30. CFLAGS = -save-temps -O2 -Wall --no-strict-aliasing $(MACHDEP) $(INCLUDE)
  31. CXXFLAGS = -std=c++0x $(CFLAGS)
  32. LDFLAGS = -g $(MACHDEP) -Wl,-Map,$(notdir $@).map
  33. #---------------------------------------------------------------------------------
  34. # any extra libraries we wish to link with the project
  35. #---------------------------------------------------------------------------------
  36. ifeq ($(HW_TYPE), gamecube)
  37. LIBS := -lfat -lasnd -lmodplay -ldb -logc -lm
  38. else
  39. LIBS := -lfat -lasnd -lmodplay -lwiiuse -lbte -logc -lm
  40. endif
  41. #---------------------------------------------------------------------------------
  42. # list of directories containing libraries, this must be the top level containing
  43. # include and lib
  44. #---------------------------------------------------------------------------------
  45. LIBDIRS :=
  46. #---------------------------------------------------------------------------------
  47. # no real need to edit anything past this point unless you need to add additional
  48. # rules for different file extensions
  49. #---------------------------------------------------------------------------------
  50. ifneq ($(BUILD),$(notdir $(CURDIR)))
  51. #---------------------------------------------------------------------------------
  52. export OUTPUT := $(CURDIR)/$(TARGET)
  53. export VPATH := $(foreach dir,$(SOURCES),$(CURDIR)/$(dir)) $(foreach dir,$(RESOURCES),$(CURDIR)/$(dir))\
  54. $(foreach dir,$(DATA),$(CURDIR)/$(dir))
  55. export DEPSDIR := $(CURDIR)/$(BUILD)
  56. #---------------------------------------------------------------------------------
  57. # automatically build a list of object files for our project
  58. #---------------------------------------------------------------------------------
  59. CFILES := $(foreach dir,$(SOURCES),$(notdir $(wildcard $(dir)/*.c)))
  60. CFILES += $(foreach dir,$(RESOURCES),$(notdir $(wildcard $(dir)/*.c)))
  61. CPPFILES := $(foreach dir,$(SOURCES),$(notdir $(wildcard $(dir)/*.cpp)))
  62. sFILES := $(foreach dir,$(SOURCES),$(notdir $(wildcard $(dir)/*.s)))
  63. SFILES := $(foreach dir,$(SOURCES),$(notdir $(wildcard $(dir)/*.S)))
  64. BINFILES := $(foreach dir,$(DATA),$(notdir $(wildcard $(dir)/*.*)))
  65. #---------------------------------------------------------------------------------
  66. # use CXX for linking C++ projects, CC for standard C
  67. #---------------------------------------------------------------------------------
  68. ifeq ($(strip $(CPPFILES)),)
  69. export LD := $(CC)
  70. else
  71. export LD := $(CXX)
  72. endif
  73. export OFILES := $(addsuffix .o,$(BINFILES)) \
  74. $(CPPFILES:.cpp=.o) $(CFILES:.c=.o) \
  75. $(sFILES:.s=.o) $(SFILES:.S=.o)
  76. #---------------------------------------------------------------------------------
  77. # build a list of include paths
  78. #---------------------------------------------------------------------------------
  79. export INCLUDE := $(foreach dir,$(INCLUDES),-I$(CURDIR)/$(dir)) \
  80. $(foreach dir,$(LIBDIRS),-I$(dir)/include) \
  81. -I$(CURDIR)/$(BUILD) \
  82. -I$(LIBOGC_INC)
  83. #---------------------------------------------------------------------------------
  84. # build a list of library paths
  85. #---------------------------------------------------------------------------------
  86. export LIBPATHS := $(foreach dir,$(LIBDIRS),-L$(dir)/lib) \
  87. -L$(LIBOGC_LIB)
  88. export OUTPUT := $(CURDIR)/$(TARGET)
  89. .PHONY: $(BUILD) clean
  90. #---------------------------------------------------------------------------------
  91. $(BUILD):
  92. @[ -d $@ ] || mkdir -p $@
  93. @$(MAKE) --no-print-directory -C $(BUILD) -f $(CURDIR)/Makefile
  94. #---------------------------------------------------------------------------------
  95. clean:
  96. @echo clean ...
  97. @rm -fr $(BUILD) $(OUTPUT).elf $(OUTPUT).dol
  98. #---------------------------------------------------------------------------------
  99. run:
  100. ifeq ($(HW_TYPE), gamecube)
  101. PSOload $(OUTPUT).dol
  102. else
  103. wiiload $(OUTPUT).dol
  104. endif
  105. #---------------------------------------------------------------------------------
  106. else
  107. DEPENDS := $(OFILES:.o=.d)
  108. #%.biz: %.ds
  109. # gcdsptool -c $< -o $@
  110. #%.h: %.biz
  111. # raw2c $< $@
  112. #---------------------------------------------------------------------------------
  113. # main targets
  114. #---------------------------------------------------------------------------------
  115. $(OUTPUT).dol: $(OUTPUT).elf
  116. $(OUTPUT).elf: $(OFILES)
  117. #---------------------------------------------------------------------------------
  118. # This rule links in binary data with the .bin extension
  119. #---------------------------------------------------------------------------------
  120. #%.bin.o : %.bin
  121. #---------------------------------------------------------------------------------
  122. # @echo $(notdir $<)
  123. # $(bin2o)
  124. -include $(DEPENDS)
  125. #---------------------------------------------------------------------------------
  126. endif
  127. #---------------------------------------------------------------------------------