mirror of
https://github.com/pret/agbcc.git
synced 2026-03-21 17:44:20 -05:00
Add support for building agbcc without devkitPro
This commit is contained in:
parent
74e171579e
commit
293e28b85d
|
|
@ -1,4 +1,10 @@
|
|||
ifneq (,$(wildcard $(DEVKITARM)/base_tools))
|
||||
include $(DEVKITARM)/base_tools
|
||||
else
|
||||
PREFIX := arm-none-eabi-
|
||||
export AR := $(PREFIX)ar
|
||||
export AS := $(PREFIX)as
|
||||
endif
|
||||
|
||||
SHELL := /bin/bash -o pipefail
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,11 @@
|
|||
ifneq (,$(wildcard $(DEVKITARM)/base_tools))
|
||||
include $(DEVKITARM)/base_tools
|
||||
else
|
||||
PREFIX := arm-none-eabi-
|
||||
export AR := $(PREFIX)ar
|
||||
export AS := $(PREFIX)as
|
||||
endif
|
||||
|
||||
CC1 = ../old_agbcc
|
||||
|
||||
libgcc.a: libgcc1.a libgcc2.a fp-bit.o dp-bit.o
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user