diff options
author | Keith Packard <keithp@keithp.com> | 2019-02-18 12:59:05 -0800 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2019-02-18 13:08:23 -0800 |
commit | 7a89aa1ea7e1b02b5cd310986adf4239ec0ce91d (patch) | |
tree | 74e5fe54f95ab21e513a1c9a14b8a02c1c8cffea /src/avr-demo | |
parent | 889518aeee080b0f8bb954db86d08105898d8161 (diff) |
altos: Move common build definitions to src/Makefile.defs
This cleans up the build process for all architectures, providing a
common place to specify vpath, cflags and build rules for various
common files.
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'src/avr-demo')
-rw-r--r-- | src/avr-demo/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/avr-demo/Makefile b/src/avr-demo/Makefile index 0aca6f8a..2f3a0750 100644 --- a/src/avr-demo/Makefile +++ b/src/avr-demo/Makefile @@ -47,7 +47,7 @@ MCU=atmega32u4 PRODUCT_DEF=-DAVR_DEMO IDPRODUCT=0x000a CFLAGS = $(PRODUCT_DEF) -I. -I../avr -I../kernel -I.. -CFLAGS += -g -mmcu=$(MCU) -Wall -Wstrict-prototypes -Os -mcall-prologues +CFLAGS += -mmcu=$(MCU) -Wall -Wstrict-prototypes -mcall-prologues NICKLE=nickle |