From abe16e8d584a1e0e8a0ef9efa41d20af71564f41 Mon Sep 17 00:00:00 2001 From: Charles Manning Date: Thu, 22 Jul 2010 10:40:15 +1200 Subject: [PATCH] yaffs Make directory for extracting common wince files This helps to shift files to WinCE portts. Signed-off-by: Charles Manning --- direct/{ => wince-common}/Makefile | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) rename direct/{ => wince-common}/Makefile (87%) 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) -- 2.30.2