*** empty log message ***
[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.3 2004-11-03 09:16:47 charles Exp $
14
15 CFLAGS =    -Wall -DCONFIG_YAFFS_DIRECT -DCONFIG_YAFFS_SHORT_NAMES_IN_RAM -DYAFFS2_DEFINES -g
16 #CFLAGS+=   -Wshadow -Wpointer-arith -Wwrite-strings -Wstrict-prototypes -Wmissing-declarations
17 #CFLAGS+=   -Wmissing-prototypes -Wredundant-decls -Wnested-externs -Winline
18
19
20 DIRECTTESTOBJS = dtest.o yaffscfg2k.o yaffs_ecc.o yaffs_fileem2k.o yaffsfs.o yaffs_guts.o yaffs_packedtags.o yaffs_ramdisk.o yaffs_tagscompat.o
21
22 BOOTTESTOBJS = bootldtst.o yboot.o yaffs_fileem.o nand_ecc.o
23
24 ALLOBJS =  dtest.o nand_ecc.o yaffscfg.o yaffs_fileem.o yaffsfs.o yaffs_ramdisk.o bootldtst.o yboot.o 
25
26 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
27
28 #all: directtest2k boottest
29
30 all: directtest2k
31
32 $(ALLOBJS): %.o: %.c
33         gcc -c $(CFLAGS) $< -o $@
34
35 $(SYMLINKS):
36         ln -s ../$@ $@
37
38 directtest2k: $(SYMLINKS) $(DIRECTTESTOBJS)
39         gcc -o $@ $(DIRECTTESTOBJS)
40
41
42 boottest: $(SYMLINKS) $(BOOTTESTOBJS)
43         gcc -o $@ $(BOOTTESTOBJS)
44
45
46 clean:
47         rm -f $(ALLOBJS) core