mirror of
https://github.com/Polprzewodnikowy/SummerCart64.git
synced 2024-11-30 01:04:13 +01:00
12 lines
225 B
Makefile
12 lines
225 B
Makefile
|
TOOLCHAIN = $(N64_INST)/bin/mips64-elf-
|
||
|
CC = $(TOOLCHAIN)gcc
|
||
|
AR = $(TOOLCHAIN)ar
|
||
|
|
||
|
LIB_NAME = libsc64_libdragon
|
||
|
|
||
|
LIB_BUILD_DIR = libdragon
|
||
|
|
||
|
CFLAGS += -march=vr4300 -mtune=vr4300 -DLIBDRAGON
|
||
|
|
||
|
include Makefile.common
|