continuing to flesh out makefile

This commit is contained in:
Shaun Inman 2023-02-04 11:08:51 -05:00
parent 24c100662e
commit 518f180df5
3 changed files with 36 additions and 20 deletions

View file

@ -1,4 +0,0 @@
#!/bin/sh
cd $(dirname "$0")
./clock.elf

View file

@ -2,7 +2,7 @@ ifeq (,$(CROSS_COMPILE))
$(error missing CROSS_COMPILE for this toolchain)
endif
TARGET = Clock.pak/clock.elf
TARGET = clock.elf
CC = $(CROSS_COMPILE)gcc
CFLAGS = -marm -mtune=cortex-a9 -mfpu=neon-vfpv4 -mfloat-abi=hard -march=armv7-a -fomit-frame-pointer