*** empty log message ***
[yaffs/.git] / direct / Makefile
diff --git a/direct/Makefile b/direct/Makefile
new file mode 100644 (file)
index 0000000..22a18cd
--- /dev/null
@@ -0,0 +1,45 @@
+# Makefile for YAFFS direct test
+#
+# Copyright (C) 2003 Aleph One Ltd.
+#
+# Created by Charles Manning <charles@aleph1.co.uk>
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License version 2 as
+# published by the Free Software Foundation.
+#
+# NB Warning this Makefile does not include header dependencies.
+#
+# $Id: Makefile,v 1.1 2003-01-21 03:32:17 charles Exp $
+
+CFLAGS =    -Wall -DCONFIG_YAFFS_DIRECT -DCONFIG_YAFFS_SHORT_NAMES_IN_RAM -g
+#CFLAGS+=   -Wshadow -Wpointer-arith -Wwrite-strings -Wstrict-prototypes -Wmissing-declarations
+#CFLAGS+=   -Wmissing-prototypes -Wredundant-decls -Wnested-externs -Winline
+
+
+DIRECTTESTOBJS = dtest.o nand_ecc.o yaffscfg.o yaffs_fileem.o yaffsfs.o yaffs_ramdisk.o yaffs_guts.o
+
+BOOTTESTOBJS = bootldtst.o yboot.o yaffs_fileem.o nand_ecc.o
+
+ALLOBJS =  dtest.o nand_ecc.o yaffscfg.o yaffs_fileem.o yaffsfs.o yaffs_ramdisk.o bootldtst.o yboot.o 
+
+SYMLINKS = devextras.h nand_ecc.c yaffs_guts.c yaffs_guts.h yaffsinterface.h yportenv.h
+
+all: directtest boottest
+
+$(ALLOBJS): %.o: %.c
+       gcc -c $(CFLAGS) $< -o $@
+
+$(SYMLINKS):
+       ln -s ../$@ $@
+
+directtest: $(SYMLINKS) $(DIRECTTESTOBJS)
+       gcc -o $@ $(DIRECTTESTOBJS)
+
+
+boottest: $(SYMLINKS) $(BOOTTESTOBJS)
+       gcc -o $@ $(BOOTTESTOBJS)
+
+
+clean:
+       rm -f $(ALLOBJS) core