rahulj 99/11/24 15:21:42
Modified: c/obj Makefile.in
c/src Makefile.in runConfigure
Log:
Now works under HPUX 10.20 with CC and aCC, with ICU and native
distclean target now remove and remaining Makefile(s)
clean target now removes the template repository directory
Revision Changes Path
1.4 +16 -0 xml-xerces/c/obj/Makefile.in
Index: Makefile.in
===================================================================
RCS file: /home/cvs/xml-xerces/c/obj/Makefile.in,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- Makefile.in 1999/11/23 01:59:16 1.3
+++ Makefile.in 1999/11/24 23:21:42 1.4
@@ -55,6 +55,9 @@
#
#
# $Log: Makefile.in,v $
+# Revision 1.4 1999/11/24 23:21:42 rahulj
+# Now works under HPUX 10.20 with CC and aCC, with ICU and native
distclean target now remove and remaining Makefile(s)
clean target now removes the template repository directory
+#
# Revision 1.3 1999/11/23 01:59:16 rahulj
# Code now works under HPUX 11. Tested inmemory message loader.
Revamped makefiles. Builds with both DCE threads as well as pthread libraries.
#
@@ -85,6 +88,7 @@
PREFIX = @prefix@
LDFLAGS = @ldflags@
LIBS = @libs@
+OSVER = @osver@
include ../src/Makefile.incl
@@ -163,12 +167,24 @@
endif
endif
+
clean:
@echo "Making clean in obj ..."
-rm -f $(ALL_OBJECTS) ${THISLIB}${VER}${SHLIBSUFFIX}
+ifneq ($strip $(TEMPLATESREPOSITORY)),)
+ -rm -f $(TEMPLATESREPOSITORY)/*.o
+ -rm -f $(TEMPLATESREPOSITORY)/*.c
+ -rm -f $(TEMPLATESREPOSITORY)/*.cs
+ -rm -f $(TEMPLATESREPOSITORY)/*.he
+endif
+
distclean: clean
rm -f Makefile
+ifneq ($strip $(TEMPLATESREPOSITORY)),)
+ -rm -rf $(TEMPLATESREPOSITORY)
+endif
+
install:
ifeq (${OS390BATCH},1)
1.6 +4 -0 xml-xerces/c/src/Makefile.in
Index: Makefile.in
===================================================================
RCS file: /home/cvs/xml-xerces/c/src/Makefile.in,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- Makefile.in 1999/11/23 01:59:25 1.5
+++ Makefile.in 1999/11/24 23:21:42 1.6
@@ -55,6 +55,9 @@
#
#
# $Log: Makefile.in,v $
+# Revision 1.6 1999/11/24 23:21:42 rahulj
+# Now works under HPUX 10.20 with CC and aCC, with ICU and native
distclean target now remove and remaining Makefile(s)
clean target now removes the template repository directory
+#
# Revision 1.5 1999/11/23 01:59:25 rahulj
# Code now works under HPUX 11. Tested inmemory message loader.
Revamped makefiles. Builds with both DCE threads as well as pthread libraries.
#
@@ -201,6 +204,7 @@
${CD} $(VALIDATORS_DTD_DIR) && $(MAKE) $@ && ${CD} ../..
${CD} $(ALL_OBJECTS_DIR) && $(MAKE) $@ && ${CD} ..
rm -f Makefile config.cache config.log config.status
+ find . -name Makefile -print -exec rm -f {} \;
rm -f *~ core
#docs:
1.6 +9 -6 xml-xerces/c/src/runConfigure
Index: runConfigure
===================================================================
RCS file: /home/cvs/xml-xerces/c/src/runConfigure,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- runConfigure 1999/11/23 01:59:33 1.5
+++ runConfigure 1999/11/24 23:21:42 1.6
@@ -58,6 +58,9 @@
#
#
# $Log: runConfigure,v $
+# Revision 1.6 1999/11/24 23:21:42 rahulj
+# Now works under HPUX 10.20 with CC and aCC, with ICU and native
distclean target now remove and remaining Makefile(s)
clean target now removes the template repository directory
+#
# Revision 1.5 1999/11/23 01:59:33 rahulj
# Code now works under HPUX 11. Tested inmemory message loader.
Revamped makefiles. Builds with both DCE threads as well as pthread libraries.
#
@@ -261,13 +264,13 @@
if test $transcoder; then
case $transcoder in
icu)
- if test -z $ICUROOT ; then
+ if test -z $ICUROOT; then
echo '***Error*** ICUROOT environment variable not defined.
Exiting...';
exit -1;
fi
- transcodingDefine="-DXML_USE_ICU_TRANSCODER -I${ICUROOT}/include" ;
+ transcodingDefines="-DXML_USE_ICU_TRANSCODER -I${ICUROOT}/include";
transcodingLibs="-L${ICUROOT}/lib -licu-uc";
- TRANSCODER=ICU ;;
+ TRANSCODER=ICU;;
native)
;;
@@ -285,7 +288,7 @@
# Now check for the message loader
#
-MESSAGELOADER=INMEM; # By default use in-memory
+MESSAGELOADER=INMEM # By default use in-memory
msgloaderDefines="-DXML_USE_INMEM_MESSAGELOADER"
if test $msgloader ; then
@@ -306,7 +309,7 @@
msgloaderDefines="-DXML_USE_ICONV_MESSAGELOADER" ;;
*)
- echo "I do not recognize the message loader option '$msgloader'.
Please type '${0} -h' for help."
+ echo "I do not recognize the message loader option '$msgloader'.
Please type '${0} -h' for help.";
exit -1;;
esac
fi
@@ -341,7 +344,7 @@
esac
fi
-export USELIBWWW;
+export USELIBWWW