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 Frith-MacDonald 1998-11-20 19:48:31 +00:00
parent 7266411f93
commit e2c27f00e9

View file

@ -53,6 +53,10 @@ after-install::
$(INSTALL_DATA) ./include/$$file \
$(GNUSTEP_HEADERS)/gnustep/base/$$file ; \
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
# 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.
#
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 $@
#
# 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 $@
TAGS: $(DIST_FILES)