|
DataMuseum.dkPresents historical artifacts from the history of: DKUUG/EUUG Conference tapes |
This is an automatic "excavation" of a thematic subset of
See our Wiki for more about DKUUG/EUUG Conference tapes Excavated with: AutoArchaeologist - Free & Open Source Software. |
top - metrics - downloadIndex: M T
Length: 2318 (0x90e) Types: TextFile Names: »Makefile.SH«
└─⟦9ae75bfbd⟧ Bits:30007242 EUUGD3: Starter Kit └─⟦91a96b8ca⟧ »EurOpenD3/utils/patch.tar.Z« └─⟦17c387d66⟧ └─⟦this⟧ »Makefile.SH« └─⟦9ae75bfbd⟧ Bits:30007242 EUUGD3: Starter Kit └─⟦3658e588a⟧ »EurOpenD3/mail/mh/mh-6.7.tar.Z« └─⟦c75e36ecb⟧ └─⟦this⟧ »mh-6.7/miscellany/patch-2.0.12/Makefile.SH«
case $CONFIG in '') . config.sh ;; esac echo "Extracting Makefile (with variable substitutions)" cat >Makefile <<!GROK!THIS! # $Header: Makefile.SH,v 2.0.1.2 88/06/22 20:43:40 lwall Locked $ # # $Log: Makefile.SH,v $ # Revision 2.0.1.2 88/06/22 20:43:40 lwall # patch12: config.h now depends on config.h.SH # # Revision 2.0.1.1 88/06/03 15:00:48 lwall # patch10: upgraded to match some new metaconfig stuff # # Revision 2.0 86/09/17 15:36:15 lwall # Baseline for netwide release. # # Revision 1.2 86/09/08 14:07:42 lwall # Split up patch.c. # # Revision 1.1 86/08/01 20:18:35 lwall # Initial revision # CC = $cc bin = $bin mansrc = $mansrc manext = $manext CFLAGS = $ccflags -O LDFLAGS = $ldflags SMALL = $small LARGE = $large $split !GROK!THIS! cat >>Makefile <<'!NO!SUBS!' public = patch private = manpages = patch.man util = Makefile c = patch.c pch.c inp.c version.c util.c obj = patch.o pch.o inp.o util.o version.o lintflags = -phbvxac addedbyconf = Makefile.old bsd config.h config.sh eunice loc pdp11 usg v7 # grrr SHELL = /bin/sh .c.o: $(CC) -c $(CFLAGS) $(LARGE) $*.c all: $(public) $(private) $(util) touch all patch: $(obj) $(CC) $(LDFLAGS) $(obj) $(libs) -o patch config.h: config.h.SH sh config.h.SH # won't work with csh install: patch export PATH || exit 1 - mv $(bin)/patch $(bin)/patch.old - if test `pwd` != $(bin); then cp $(public) $(bin); fi cd $(bin); chmod 755 $(public) - if test `pwd` != $(mansrc); then \ for page in $(manpages); do \ rm -f $(mansrc)/../cat$(manext)/`basename $$page .man`.$(manext); \ cp $$page $(mansrc)/`basename $$page .man`.$(manext); \ done; \ fi clean: rm -f *.o *.orig core realclean: rm -f patch *.o *.orig core $(addedbyconf) # The following lint has practically everything turned on. Unfortunately, # you have to wade through a lot of mumbo jumbo that can't be suppressed. # If the source file has a /*NOSTRICT*/ somewhere, ignore the lint message # for that spot. lint: lint $(lintflags) $(defs) $(c) > patch.fuzz patch.o: config.h common.h patch.c inp.h pch.h util.h version.h pch.o: config.h common.h pch.c pch.h util.h inp.o: config.h common.h inp.c inp.h util.h util.o: config.h common.h util.c util.h version.o: config.h common.h version.c version.h patchlevel.h util.h !NO!SUBS! $eunicefix Makefile