ccfa51835e
It is very similar to how e200tool from MrH works but uses the framework of hwstub which is makes it completely trivial since we already have the USB driver written. Change-Id: I61cdc245d3f828c2682bcd6ecfed5a1cc0094139
14 lines
225 B
Makefile
14 lines
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
|