WIP large file support
[yaffs2.git] / linux-tests / Makefile
diff --git a/linux-tests/Makefile b/linux-tests/Makefile
new file mode 100644 (file)
index 0000000..1f1d56e
--- /dev/null
@@ -0,0 +1,15 @@
+CFLAGS += -Wall -D_FILE_OFFSET_BITS=64
+
+TARGETS = xattrtest writebigsparse
+all: $(TARGETS)
+
+xattrtest: xattrtest.c
+       gcc $(CFLAGS) -o $@ $<
+
+writebigsparse: writebigsparse.c
+       gcc $(CFLAGS) -o $@ $<
+       
+
+.PHONEY: clean
+clean:
+       rm -f $(TARGETS)