mirror of
https://github.com/pmret/gcc-papermario.git
synced 2024-11-08 20:02:47 +01:00
10 lines
247 B
Plaintext
10 lines
247 B
Plaintext
# Our make needs a little help...
|
|
MAKE=make
|
|
|
|
# We don't support -g yet, so don't try and use it.
|
|
CFLAGS =
|
|
LIBGCC2_CFLAGS = -O2 $(GCC_CFLAGS)
|
|
|
|
# Hide xmalloc so that it does not conflict with the one in libc.a, Ick!
|
|
X_CFLAGS = -Dxmalloc=my_xmalloc
|