diff options
author | Marcus Huderle <huderlem@gmail.com> | 2018-05-25 21:50:09 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-25 21:50:09 -0500 |
commit | 7e50da47a283b46cdb8fe199f28bc4b44ad340d7 (patch) | |
tree | d9cf29ebcfc18de9c651d3a94d6b78115b1525ef /libc | |
parent | 5e1f24558d4e4fb836439a970887a3738e2e7275 (diff) | |
parent | 186d945b312dad5ad77cef3d8acdf01b84105825 (diff) |
Merge pull request #20 from yui-konnu/master
Another macOS fix
Diffstat (limited to 'libc')
-rw-r--r-- | libc/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/Makefile b/libc/Makefile index c79f5c3..6ab133b 100644 --- a/libc/Makefile +++ b/libc/Makefile @@ -11,7 +11,7 @@ CPPFLAGS := -I ../ginclude -I include -nostdinc -undef \ -DABORT_PROVIDED -DHAVE_GETTIMEOFDAY -D__thumb__ -DARM_RDI_MONITOR \ -D__STDC__ -D__GNUC__ -DINTERNAL_NEWLIB -D__USER_LABEL_PREFIX__= -AR := ar +AR := $(DEVKITARM)/bin/arm-none-eabi-ar # Clear the default suffixes. .SUFFIXES: @@ -21,7 +21,7 @@ AR := ar .PHONY: all clean -C_SRCS := $(shell find -iname "*.c" -a ! -iname "mallocr.c") +C_SRCS := $(shell find . -iname "*.c" -a ! -iname "mallocr.c") C_INTRS := $(C_SRCS:%.c=%.i) C_OBJS := $(C_SRCS:%.c=%.o) \ stdlib/mallocr.o stdlib/freer.o stdlib/reallocr.o stdlib/callocr.o \ |