Merge branch 'master' of ssh://www.aleph1.co.uk/home/aleph1/git/yaffs2
[yaffs2.git] / direct / test-framework / timothy_tests / yaffs_and_linux_mirror_tests / Makefile
diff --git a/direct/test-framework/timothy_tests/yaffs_and_linux_mirror_tests/Makefile b/direct/test-framework/timothy_tests/yaffs_and_linux_mirror_tests/Makefile
new file mode 100644 (file)
index 0000000..f130aa5
--- /dev/null
@@ -0,0 +1,45 @@
+# Makefile for mirror_tests
+#
+#
+# YAFFS: Yet another Flash File System. A NAND-flash specific file system.
+#
+# Copyright (C) 2003-2010 Aleph One Ltd.
+#
+#
+# Created by Timothy Manning <timothy@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.
+#
+
+YDI_DIR = ../../../
+YDI_FRAMEWORK_DIR = ../../
+CLEAN_OBJS = mirror_tests emfile-2k-0
+
+TESTFILES =    mirror_tests.o lib.o\
+               linux_test_open.o yaffs_test_open.o\
+               linux_test_truncate.o yaffs_test_truncate.o \
+               linux_test_unlink.o yaffs_test_unlink.o \
+               linux_test_write.o yaffs_test_write.o
+
+all: mirror_tests
+
+YAFFS_TEST_OBJS = $(COMMONTESTOBJS) $(TESTFILES)
+
+
+ALL_UNSORTED_OBJS += $(YAFFS_TEST_OBJS) $(FUZZER_OBJS)
+
+include $(YDI_FRAMEWORK_DIR)/FrameworkRules.mk
+
+
+yaffs_test: $(FRAMEWORK_SOURCES) $(YAFFS_TEST_OBJS)
+       gcc $(CFLAGS) -o $@ $(YAFFS_TEST_OBJS)
+
+
+
+mirror_tests: $(FRAMEWORK_SOURCES) $(YAFFS_TEST_OBJS)
+       gcc $(CFLAGS) -o $@ $(YAFFS_TEST_OBJS)
+