Skip to content

Commit

Permalink
treewide: update project to BlocksDS v1.0.0
Browse files Browse the repository at this point in the history
- Updated Makefiles
  • Loading branch information
lifehackerhansol committed May 12, 2024
1 parent 6bd0f24 commit c6b153e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
3 changes: 1 addition & 2 deletions Makefile.arm7
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ MAP := build/$(NAME).map
PREFIX := $(ARM_NONE_EABI_PATH)arm-none-eabi-
CC := $(PREFIX)gcc
CXX := $(PREFIX)g++
LD := $(PREFIX)gcc
OBJDUMP := $(PREFIX)objdump
MKDIR := mkdir
RM := rm -rf
Expand Down Expand Up @@ -76,10 +77,8 @@ SPECS := $(BLOCKSDS)/sys/crts/ds_arm7.specs
WARNFLAGS := -Wall

ifeq ($(SOURCES_CPP),)
LD := $(CC)
LIBS += -lc
else
LD := $(CXX)
LIBS += -lstdc++ -lc
endif

Expand Down
3 changes: 1 addition & 2 deletions Makefile.arm9
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ SOUNDBANKDIR := $(BUILDDIR)/maxmod
PREFIX := $(ARM_NONE_EABI_PATH)arm-none-eabi-
CC := $(PREFIX)gcc
CXX := $(PREFIX)g++
LD := $(PREFIX)gcc
OBJDUMP := $(PREFIX)objdump
MKDIR := mkdir
RM := rm -rf
Expand Down Expand Up @@ -89,10 +90,8 @@ SPECS := $(BLOCKSDS)/sys/crts/ds_arm9.specs
WARNFLAGS := -Wall

ifeq ($(SOURCES_CPP),)
LD := $(CC)
LIBS += -lc
else
LD := $(CXX)
LIBS += -lstdc++ -lc
endif

Expand Down

0 comments on commit c6b153e

Please sign in to comment.