Changeset 81
- Timestamp:
- 03/24/07 12:13:46 (20 months ago)
- Location:
- NEWT0/trunk
- Files:
-
- 5 added
- 3 modified
-
Makefile.in (modified) (2 diffs)
-
configure (modified) (5 diffs)
-
configure.in (modified) (3 diffs)
-
contrib/inwt (added)
-
contrib/inwt/Makefile (added)
-
contrib/inwt/Makefile.in (added)
-
contrib/inwt/README (added)
-
contrib/inwt/inwt.nwt (added)
Legend:
- Unmodified
- Added
- Removed
-
NEWT0/trunk/Makefile.in
r78 r81 65 65 $(ext)/protoREGEX 66 66 67 CONTRIBLIBS = $(contrib)/NewtObjC \ 68 $(contrib)/NativeCalls 67 CONTRIBLIBS = $(contrib)/inwt \ 68 $(contrib)/NewtObjC \ 69 $(contrib)/NativeCalls 69 70 70 71 OBJS = $(MAINOBJ) $(UTILSOBJS) $(PARSEROBJS) $(COREOBJS) … … 199 200 ### CLEAN 200 201 202 clean_contrib:: 203 @for subdir in $(CONTRIBLIBS); do \ 204 (cd $$subdir && $(MAKE) clean) || exit 1; \ 205 done 206 201 207 clean: 202 208 rm -rf build/* 209 test "x@MAKE_CONTRIB@" = x || $(MAKE) clean_contrib 210 -
NEWT0/trunk/configure
r79 r81 852 852 --enable-compat enable compatibility with the Newton, and break many 853 853 features on the desktop 854 --enable-contrib include contrib packages (inwt, NativeCalls, and 855 NewtObjC) 854 856 855 857 Optional Packages: … … 4884 4886 LIBNEWT_LDSHARED='$(CC) -dynamic -bundle -undefined suppress -flat_namespace' 4885 4887 DLEXT='dylib' 4886 MAKE_CONTRIB='contrib'4887 4888 ;; 4888 4889 cygwin*|mingw*) … … 4972 4973 fi; 4973 4974 4975 # Check whether --enable-contrib or --disable-contrib was given. 4976 if test "${enable_contrib+set}" = set; then 4977 enableval="$enable_contrib" 4978 MAKE_CONTRIB='contrib' 4979 fi; 4980 4974 4981 test "x$compat" = xno && cat >>confdefs.h <<\_ACEOF 4975 4982 #define __NAMED_MAGIC_POINTER__ 1 … … 5006 5013 5007 5014 5008 ac_config_files="$ac_config_files Makefile ext/protoFILE/Makefile ext/protoREGEX/Makefile contrib/NativeCalls/Makefile contrib/NewtObjC/Makefile"5015 ac_config_files="$ac_config_files Makefile ext/protoFILE/Makefile ext/protoREGEX/Makefile contrib/inwt/Makefile contrib/NativeCalls/Makefile contrib/NewtObjC/Makefile" 5009 5016 5010 5017 cat >confcache <<\_ACEOF … … 5535 5542 "ext/protoFILE/Makefile" ) CONFIG_FILES="$CONFIG_FILES ext/protoFILE/Makefile" ;; 5536 5543 "ext/protoREGEX/Makefile" ) CONFIG_FILES="$CONFIG_FILES ext/protoREGEX/Makefile" ;; 5544 "contrib/inwt/Makefile" ) CONFIG_FILES="$CONFIG_FILES contrib/inwt/Makefile" ;; 5537 5545 "contrib/NativeCalls/Makefile" ) CONFIG_FILES="$CONFIG_FILES contrib/NativeCalls/Makefile" ;; 5538 5546 "contrib/NewtObjC/Makefile" ) CONFIG_FILES="$CONFIG_FILES contrib/NewtObjC/Makefile" ;; -
NEWT0/trunk/configure.in
r79 r81 104 104 LIBNEWT_LDSHARED='$(CC) -dynamic -bundle -undefined suppress -flat_namespace' 105 105 DLEXT='dylib' 106 MAKE_CONTRIB='contrib'107 106 ;; 108 107 cygwin*|mingw*) … … 174 173 [compat='yes'], 175 174 [compat='no']) 175 176 AC_ARG_ENABLE(contrib, 177 AS_HELP_STRING([--enable-contrib], 178 [include contrib packages (inwt, NativeCalls, and NewtObjC)]), 179 [MAKE_CONTRIB='contrib']) 176 180 177 181 test "x$compat" = xno && AC_DEFINE(__NAMED_MAGIC_POINTER__) … … 200 204 ext/protoFILE/Makefile 201 205 ext/protoREGEX/Makefile 206 contrib/inwt/Makefile 207 contrib/inwt/inwt 202 208 contrib/NativeCalls/Makefile 203 209 contrib/NewtObjC/Makefile])
