Move around the option in Kconfig so that depending stuff are nicely indented.
[yaffs2.git] / direct / Makefile
1 # Makefile for YAFFS direct test
2 #
3 # Copyright (C) 2003 Aleph One Ltd.
4 #
5 # Created by Charles Manning <charles@aleph1.co.uk>
6 #
7 # This program is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License version 2 as
9 # published by the Free Software Foundation.
10 #
11 # NB Warning this Makefile does not include header dependencies.
12 #
13 # $Id: Makefile,v 1.7 2005-07-18 23:12:00 charles Exp $
14
15 EXTRA_COMPILE_FLAGS = -DYAFFS_IGNORE_TAGS_ECC
16
17 CFLAGS =    -Wall -DCONFIG_YAFFS_DIRECT -DCONFIG_YAFFS_SHORT_NAMES_IN_RAM -DCONFIG_YAFFS_YAFFS2 -g $(EXTRA_COMPILE_FLAGS)
18 #CFLAGS+=   -Wshadow -Wpointer-arith -Wwrite-strings -Wstrict-prototypes -Wmissing-declarations
19 #CFLAGS+=   -Wmissing-prototypes -Wredundant-decls -Wnested-externs -Winline
20
21
22 DIRECTTESTOBJS = dtest.o yaffscfg2k.o yaffs_ecc.o yaffs_fileem2k.o yaffsfs.o yaffs_guts.o yaffs_packedtags1.o yaffs_ramdisk.o yaffs_ramem2k.o yaffs_tagscompat.o yaffs_packedtags2.o yaffs_tagsvalidity.o
23
24 BOOTTESTOBJS = bootldtst.o yboot.o yaffs_fileem.o nand_ecc.o
25
26 #ALLOBJS =  dtest.o nand_ecc.o yaffscfg.o yaffs_fileem.o yaffsfs.o yaffs_ramdisk.o bootldtst.o yboot.o yaffs_ramem2k.o
27
28 ALLOBJS = $(DIRECTTESTOBJS) $(BOOTTESTOBJS)
29
30 SYMLINKS = devextras.h yaffs_ecc.c yaffs_ecc.h yaffs_guts.c yaffs_guts.h yaffsinterface.h yportenv.h yaffs_tagscompat.c yaffs_tagscompat.h \
31           yaffs_packedtags1.c yaffs_packedtags1.h yaffs_packedtags2.c yaffs_packedtags2.h yaffs_ramem2k.c yaffs_nandemul2k.h \
32           yaffs_tagsvalidity.c yaffs_tagsvalidity.h
33
34 #all: directtest2k boottest
35
36 all: directtest2k
37
38 $(ALLOBJS): %.o: %.c
39         gcc -c $(CFLAGS) $< -o $@
40
41 $(SYMLINKS):
42         ln -s ../$@ $@
43
44 directtest2k: $(SYMLINKS) $(DIRECTTESTOBJS)
45         gcc -o $@ $(DIRECTTESTOBJS)
46
47
48 boottest: $(SYMLINKS) $(BOOTTESTOBJS)
49         gcc -o $@ $(BOOTTESTOBJS)
50
51
52 clean:
53         rm -f $(ALLOBJS) core