FreeCalypso > hg > freecalypso-tools
comparison target-utils/libload/Makefile @ 0:e7502631a0f9
initial import from freecalypso-sw rev 1033:5ab737ac3ad7
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Sat, 11 Jun 2016 00:13:35 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:e7502631a0f9 |
---|---|
1 CC= arm-elf-gcc | |
2 CFLAGS= -Os -fno-builtin | |
3 CPPFLAGS=-I../include | |
4 AR= arm-elf-ar | |
5 RANLIB= arm-elf-ranlib | |
6 | |
7 OBJS= cmd_blankchk.o cmd_crc32.o cmd_memload.o \ | |
8 amdflash.o hexstrings.o intelflash.o | |
9 | |
10 all: libload.a | |
11 | |
12 libload.a: ${OBJS} | |
13 ${AR} cru $@ ${OBJS} | |
14 ${RANLIB} $@ | |
15 | |
16 clean: | |
17 rm -f *.[oa] *errs |