FreeCalypso > hg > freecalypso-sw
comparison target-utils/libmpffs/Makefile @ 100:02ece4d8c755
pirexplore: beginning of FFS support
author | Michael Spacefalcon <msokolov@ivan.Harhan.ORG> |
---|---|
date | Sun, 01 Sep 2013 21:55:51 +0000 |
parents | |
children | 7029fe8ae0bc |
comparison
equal
deleted
inserted
replaced
99:b78db17bfc85 | 100:02ece4d8c755 |
---|---|
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= globals.o init.o | |
8 | |
9 all: libmpffs.a | |
10 | |
11 libmpffs.a: ${OBJS} | |
12 ${AR} cru $@ ${OBJS} | |
13 ${RANLIB} $@ | |
14 | |
15 clean: | |
16 rm -f *.[oa] *errs |