Add first cut mkyaffs2image util
[yaffs2.git] / utils / Makefile
1 #Makefile for mkyaffs
2 #
3 # NB this is not yet suitable for putting into the kernel tree.
4 # YAFFS: Yet another FFS. A NAND-flash specific file system. 
5 #
6 # Copyright (C) 2002 Aleph One Ltd.
7 #   for Toby Churchill Ltd and Brightstar Engineering
8 #
9 # Created by Charles Manning <charles@aleph1.co.uk>
10 #
11 # This program is free software; you can redistribute it and/or modify
12 # it under the terms of the GNU General Public License version 2 as
13 # published by the Free Software Foundation.
14
15 ## Change or override  KERNELDIR to your kernel
16
17 #KERNELDIR = /usr/src/kernel-headers-2.4.18
18
19 CFLAGS =   -I/usr/include -I.. -O2 -Wall -DCONFIG_YAFFS_UTIL
20 CFLAGS+=   -Wshadow -Wpointer-arith -Wwrite-strings -Wstrict-prototypes -Wmissing-declarations
21 CFLAGS+=   -Wmissing-prototypes -Wredundant-decls -Wnested-externs -Winline
22
23 ## Change if you are using a cross-compiler
24 MAKETOOLS = 
25
26 CC=$(MAKETOOLS)gcc
27
28 MKYAFFS2SOURCES = mkyaffs2image.c
29 MKYAFFS2LINKS = yaffs_ecc.c yaffs_packedtags2.c yaffs_tagsvalidity.c
30
31 MKYAFFS2IMAGEOBJS = $(MKYAFFS2SOURCES:.c=.o) $(MKYAFFS2LINKS:.c=.o)
32
33 all: mkyaffs2image
34
35 $(MKYAFFS2IMAGEOBJS): %.o: %.c
36         $(CC) -c $(CFLAGS) $< -o $@
37
38 mkyaffs2image: $(MKYAFFS2IMAGEOBJS)
39         $(CC) -o $@ $(MKYAFFS2IMAGEOBJS)
40
41 $(MKYAFFS2LINKS):
42         ln -s ../$@ $@
43
44
45 clean:
46         rm -f $(MKYAFFS2IMAGEOBJS) core