From 7282db97a2cb76223c8181c5a8476da9fc2f1a6e Mon Sep 17 00:00:00 2001 From: charles Date: Thu, 8 Oct 2009 23:11:12 +0000 Subject: [PATCH] More SWIG pythonry --- direct/python/Makefile | 11 +++++++++-- direct/python/yaffs_swig_helper.c | 2 ++ 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/direct/python/Makefile b/direct/python/Makefile index 98b726c..5f24f97 100644 --- a/direct/python/Makefile +++ b/direct/python/Makefile @@ -14,7 +14,7 @@ # # NB Warning this Makefile does not include header dependencies. # -# $Id: Makefile,v 1.1 2009-10-08 01:58:52 charles Exp $ +# $Id: Makefile,v 1.2 2009-10-08 23:11:12 charles Exp $ #EXTRA_COMPILE_FLAGS = -DYAFFS_IGNORE_TAGS_ECC @@ -62,7 +62,14 @@ yaffs_wrap.c: yaffs.i yaffsfs_for_swig.h swig -python yaffs.i yaffsfs_for_swig.h: yaffsfs.h - cat yaffsfs.h | sed -e "s/YCHAR/char/g" | sed -e "s/YUCHAR/unsigned char/g" | sed -e "s/struct yaffs_stat/struct yaffs_stat_struct/g" > $@ + cat yaffsfs.h | \ + sed -e "s/YCHAR/char/g" | \ + sed -e "s/YUCHAR/unsigned char/g" | \ + sed -e "s/void \*/char \*/g" | \ + sed -e "s/loff_t/long long/g" | \ + sed -e "s/off_t/long/g" | \ + sed -e "s/struct yaffs_stat/struct yaffs_stat_struct/g" \ + > $@ $(ALLOBJS): %.o: %.c gcc -c $(CFLAGS) -I/usr/include/python2.6/ -o $@ $< diff --git a/direct/python/yaffs_swig_helper.c b/direct/python/yaffs_swig_helper.c index 9adc183..c803a55 100644 --- a/direct/python/yaffs_swig_helper.c +++ b/direct/python/yaffs_swig_helper.c @@ -18,4 +18,6 @@ int yaffs_print_constants(void) printf( "O_WRONLY.......%d\n",O_WRONLY); printf( "O_RDWR.........%d\n",O_RDWR); printf( "O_TRUNC........%d\n",O_TRUNC); + + return 0; } -- 2.30.2