Add more test stuff
[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.13 2006-11-07 23:37:43 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) -DNO_Y_INLINE
18 CFLAGS+=    -fstack-check -O0
19
20 #CFLAGS+=   -Wshadow -Wpointer-arith -Wwrite-strings -Wstrict-prototypes -Wmissing-declarations
21 #CFLAGS+=   -Wmissing-prototypes -Wredundant-decls -Wnested-externs -Winline
22
23
24 DIRECTTESTOBJS = dtest.o yaffscfg2k.o yaffs_ecc.o yaffs_fileem2k.o yaffsfs.o yaffs_guts.o \
25                  yaffs_packedtags1.o yaffs_ramdisk.o yaffs_ramem2k.o \
26                  yaffs_tagscompat.o yaffs_packedtags2.o yaffs_tagsvalidity.o yaffs_nand.o \
27                  yaffs_checkptrw.o  yaffs_qsort.o \
28 #                yaffs_checkptrwtest.o\
29                  
30
31 BOOTTESTOBJS = bootldtst.o yboot.o yaffs_fileem.o nand_ecc.o
32
33 #ALLOBJS =  dtest.o nand_ecc.o yaffscfg.o yaffs_fileem.o yaffsfs.o yaffs_ramdisk.o bootldtst.o yboot.o yaffs_ramem2k.o
34
35 ALLOBJS = $(DIRECTTESTOBJS) $(BOOTTESTOBJS)
36
37 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 \
38           yaffs_packedtags1.c yaffs_packedtags1.h yaffs_packedtags2.c yaffs_packedtags2.h  yaffs_nandemul2k.h \
39           yaffs_nand.c yaffs_nand.h \
40           yaffs_tagsvalidity.c yaffs_tagsvalidity.h yaffs_checkptrw.h yaffs_checkptrw.c \
41           yaffs_qsort.c yaffs_qsort.h
42
43 #all: directtest2k boottest
44
45 all: directtest2k
46
47 $(ALLOBJS): %.o: %.c
48         gcc -c $(CFLAGS) $< -o $@
49
50 $(SYMLINKS):
51         ln -s ../$@ $@
52
53 directtest2k: $(SYMLINKS) $(DIRECTTESTOBJS)
54         gcc -o $@ $(DIRECTTESTOBJS)
55
56
57 boottest: $(SYMLINKS) $(BOOTTESTOBJS)
58         gcc -o $@ $(BOOTTESTOBJS)
59
60
61 clean:
62         rm -f $(ALLOBJS) core