From: Charles Manning Date: Wed, 21 Jul 2010 22:40:15 +0000 (+1200) Subject: yaffs Make directory for extracting common wince files X-Git-Tag: pre-name-change~41 X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs2.git;a=commitdiff_plain;h=abe16e8d584a1e0e8a0ef9efa41d20af71564f41 yaffs Make directory for extracting common wince files This helps to shift files to WinCE portts. Signed-off-by: Charles Manning --- diff --git a/direct/Makefile b/direct/wince-common/Makefile similarity index 87% rename from direct/Makefile rename to direct/wince-common/Makefile index dcfc297..54f1b0d 100644 --- a/direct/Makefile +++ b/direct/wince-common/Makefile @@ -59,8 +59,17 @@ YAFFSSYMLINKS = devextras.h yaffs_ecc.c yaffs_ecc.h yaffs_guts.c yaffs_guts.h ya yaffs_bitmap.c yaffs_bitmap.h \ yaffs_verify.c yaffs_verify.h +YAFFSDIRECTSYMLINKS = yaffsfs.c yaffs_flashif.h yaffs_flashif2.h\ + yaffsfs.h yaffs_malloc.h ydirectenv.h \ + yaffs_flashif.c \ + yaffs_nandif.c yaffs_nandif.h + + + +BASICTESTSYMLINKS = yramsim.c yramsim.h + +SYMLINKS = $(YAFFSSYMLINKS) $(YAFFSDIRECTSYMLINKS) $(BASICTESTSYMLINKS) -SYMLINKS = $(YAFFSSYMLINKS) @@ -70,11 +79,14 @@ symlinks: $(SYMLINKS) $(YAFFSSYMLINKS): - ln -s ../$@ $@ + ln -s ../../$@ $@ $(YAFFSDIRECTSYMLINKS): ln -s ../$@ $@ +$(BASICTESTSYMLINKS): + ln -s ../basic-test/$@ $@ + clean: rm -f $(SYMLINKS)