mirror of
https://github.com/brain-hackers/boot4u
synced 2025-10-14 12:18:41 +09:00
Ready for use
This commit is contained in:
15
Makefile
Executable file
15
Makefile
Executable file
@@ -0,0 +1,15 @@
|
||||
CROSS_COMPILE:=arm-linux-gnueabihf-
|
||||
AS:=$(CROSS_COMPILE)as
|
||||
CC:=$(CROSS_COMPILE)gcc
|
||||
STRIP:=$(CROSS_COMPILE)strip
|
||||
|
||||
.PHONY:
|
||||
all: AppMain.bin
|
||||
|
||||
.PHONY:
|
||||
clean:
|
||||
@rm -f *.bin *.elf
|
||||
|
||||
AppMain.bin:
|
||||
@$(AS) main.S -o main.elf
|
||||
@./extract.py -p main.elf AppMain.bin
|
Reference in New Issue
Block a user