mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-12-09 13:15:18 -05:00
Completely rewrite the Mafile, properly put the usb driver in its own file and the target specific files in a subdirectory. Change-Id: Iaeee0128e021d5dad76b4d6035a63e33e2d946c1
14 lines
No EOL
225 B
Makefile
14 lines
No EOL
225 B
Makefile
#
|
|
# common
|
|
#
|
|
CC=arm-elf-eabi-gcc
|
|
LD=arm-elf-eabi-gcc
|
|
AS=arm-elf-eabi-gcc
|
|
OC=arm-elf-eabi-objcopy
|
|
DEFINES=
|
|
INCLUDES=-I$(CURDIR)
|
|
GCCOPTS=-mcpu=arm926ej-s
|
|
BUILD_DIR=$(CURDIR)/build/
|
|
ROOT_DIR=$(CURDIR)/..
|
|
|
|
include ../hwstub.make |