Improved installation - put gdomap in /etc/services

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@3280 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
richard 1998-11-20 19:48:31 +00:00
parent 3c28307cb6
commit c4585a39a0

View file

@ -53,6 +53,10 @@ after-install::
$(INSTALL_DATA) ./include/$$file \ $(INSTALL_DATA) ./include/$$file \
$(GNUSTEP_HEADERS)/gnustep/base/$$file ; \ $(GNUSTEP_HEADERS)/gnustep/base/$$file ; \
done done
if ! ( fgrep -q gdomap /etc/services ); then \
echo "gdomap 538/tcp # GNUstep distrib objects" >> /etc/services; \
echo "gdomap 538/udp # GNUstep distrib objects" >> /etc/services; \
fi
# Things to do before uninstalling # Things to do before uninstalling
# before-uninstall:: # before-uninstall::
@ -188,13 +192,29 @@ include/o_map.h: include/o_map_bas.h include/o_map_cbs.h include/o_hash.h
# #
# Files that include mframe.h will need a rebuild if it is changed. # Files that include mframe.h will need a rebuild if it is changed.
# #
mframe.m NSConnection.m NSInvocation.m NSMethodSignature.m NSObjCRuntime.m : include/mframe.h mframe.m NSConnection.m NSInvocation.m NSMethodSignature.m NSObjCRuntime.m \
: include/mframe.h
touch $@ touch $@
# #
# Files that include Fastmap.x will need a rebuild if it is changed. # Files that include FastArray.x will need a rebuild if it is changed.
# #
NSArchiver.m NSGCountedSet.m NSGDictionary.m NSGSet.m : FastMap.x NSUnarchiver.m \
: FastArray.x
touch $@
#
# Files that include FastMap.x will need a rebuild if it is changed.
#
NSArchiver.m NSGCountedSet.m NSGDictionary.m NSGSet.m \
: FastMap.x
touch $@
#
# Files that include FastArray.x and FastMap.x
#
NSSerializer.m \
: FastArray.x FastMap.x
touch $@ touch $@
TAGS: $(DIST_FILES) TAGS: $(DIST_FILES)