|  | 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: 1663 (0x67f)
    Types: TextFile
    Names: »Makefile«
└─⟦a0efdde77⟧ Bits:30001252 EUUGD11 Tape, 1987 Spring Conference Helsinki
    └─⟦526ad3590⟧ »EUUGD11/gnu-31mar87/X.V10.R4.tar.Z« 
        └─⟦2109abc41⟧ 
            └─⟦this⟧ »./X.V10R4/libapollo/Makefile« 
#
#	$Header: Makefile,v 10.1 86/11/29 13:54:07 jg Rel $
#
#
#	$Header: Makefile,v 10.1 86/11/29 13:54:07 jg Rel $
#
# Copyright 1985, Massachusetts Institute of Technology
# Copyright (c) 1986 by Sun Microsystems,  Inc.
#
# @(#)Makefile 2.1 86/01/28
#
INCPATH=-I. -I../include
OFLAG= -O
CFLAGS= ${OFLAG} ${INCPATH} 
#CFLAGS= -g ${INCPATH}
C2 = /lib/c2
SRCS= bitpix.c copy.c cursor.c draw.c fill.c font.c\
	maps.c packet.c put.c text.c textutil.c tile.c util.c\
	events.c initial.c maps.c prim.c 
OBJS= bitpix.o copy.o cursor.o draw.o fill.o font.o\
	put.o text.o textutil.o tile.o util.o\
	events.o initial.o maps.o prim.o 
all: libapollo.a
site:
	rm -f font.o
font.o: vssite.h ../libvs100/param.h
${OBJS}: Xapollo.h ../X/X.h ../X/vsinput.h ../X/Xdev.h
# as this library is private to X, we should do nothing on install.
install: all
lint:
	lint -Capollo *.c
libapollo.a: $(OBJS)
	ar r libapollo.a $?
	@ranlib libapollo.a
clean:
	rm -f ERRS *.o libapollo.a *~
# This make depend entry will only work with newer C compiler than 4.2
depend:
	cc -M ${INCPATH} ${SRCS} | \
	awk ' { if ($$1 != prev) { print rec; rec = $$0; prev = $$1; } \
		else { if (length(rec $$2) > 78) { print rec; rec = $$0; } \
		       else rec = rec " " $$2 } } \
	      END { print rec } ' > makedep
	echo '/^# DO NOT DELETE THIS LINE/+2,$$d' >eddep
	echo '$$r makedep' >>eddep
	echo 'w' >>eddep
	cp Makefile Makefile.bak
	ed - Makefile < eddep
	rm eddep makedep
	echo '# DEPENDENCIES MUST END AT END OF FILE' >> Makefile
	echo '# IF YOU PUT STUFF HERE IT WILL GO AWAY' >> Makefile
	echo '# see make depend above' >> Makefile
# DO NOT DELETE THIS LINE -- make depend uses it