|
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: 982 (0x3d6) Types: TextFile Names: »Makefile.sun«
└─⟦a0efdde77⟧ Bits:30001252 EUUGD11 Tape, 1987 Spring Conference Helsinki └─⟦this⟧ »EUUGD11/euug-87hel/sec8/sps/Makefile.sun«
# Makefile for SPS (Sun-2 and Sun-3, 4.2BSD UNIX Version) PROG = sps OBJS = filecount.o findtty.o flagdecode.o flagsetup.o \ getcmd.o getupage.o globals1.o globals2.o hashuid.o \ initialise.o initsymbols.o inittty.o main.o mktree.o \ needed.o openfiles.o percentmem.o prcmd.o prcpu.o \ prheader.o printall.o printproc.o prsummary.o readstatus.o \ selectproc.o selecttty.o termwidth.o ttystatus.o waitingfor.o INCS = sps.h CC = cc CFLAGS = -DSUN -DBSD42 -I/sys LIBS = -ltermlib DIRINSTALL = /bin all: $(PROG) .c.o: $(CC) $(CFLAGS) -c -O -R $< globals1.o waitingfor.o: $(CC) $(CFLAGS) -c -O $< $(OBJS): $(INCS) $(PROG): $(OBJS) $(CC) -o $@ $(OBJS) $(LIBS) install: $(PROG) strip $(PROG) mv $(PROG) $(DIRINSTALL)/$(PROG) /etc/chown root $(DIRINSTALL)/$(PROG) chgrp kmem $(DIRINSTALL)/$(PROG) chmod 2755 $(DIRINSTALL)/$(PROG) lint: lint -x -b $(CFLAGS) *.c clean: rm -f $(OBJS) $(PROG)