yaffs Make directory for extracting common wince files
authorCharles Manning <cdhmanning@gmail.com>
Wed, 21 Jul 2010 22:40:15 +0000 (10:40 +1200)
committerCharles Manning <cdhmanning@gmail.com>
Wed, 21 Jul 2010 22:40:15 +0000 (10:40 +1200)
This helps to shift files to WinCE portts.

Signed-off-by: Charles Manning <cdhmanning@gmail.com>
direct/wince-common/Makefile [moved from direct/Makefile with 87% similarity]

similarity index 87%
rename from direct/Makefile
rename to direct/wince-common/Makefile
index dcfc297b5b52b917510112668f4fecc4a5459720..54f1b0d413457f7dad8d3820470b46b2a0b2d9fc 100644 (file)
@@ -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)