DataMuseum.dk

Presents historical artifacts from the history of:

DKUUG/EUUG Conference tapes

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about DKUUG/EUUG Conference tapes

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - metrics - download
Index: T m

⟦0a34cff98⟧ TextFile

    Length: 2520 (0x9d8)
    Types: TextFile
    Names: »makefile.kcc«

Derivation

└─⟦52210d11f⟧ Bits:30007239 EUUGD2: TeX 3 1992-12
    └─⟦c319c2751⟧ »unix3.0/TeX3.0.tar.Z« 
        └─⟦036c765ac⟧ 
            └─⟦this⟧ »TeX3.0/LaTeX/LaTeXmakeindex/src/makefile.kcc« 
└─⟦060c9c824⟧ Bits:30007080 DKUUG TeX 2/12/89
    └─⟦this⟧ »./tex82/LaTeX/LaTeXmakeindex/src/makefile.kcc« 
└─⟦52210d11f⟧ Bits:30007239 EUUGD2: TeX 3 1992-12
    └─⟦63303ae94⟧ »unix3.14/TeX3.14.tar.Z« 
        └─⟦c58930e5c⟧ 
            └─⟦this⟧ »TeX3.14/LaTeX/LaTeXmakeindex/src/makefile.kcc« 

TextFile

#  Makefile modified for DEC-20 (KCC-20 compiler) [13-Jan-88] (only major
#  targets supported)
#
#  Makefile for the program `makeindex'
#
#  Copyright (C) 1987	Pehong Chen	(phc@renoir.berkeley.edu)
#  Computer Science Division
#  University of California, Berkeley
#

CC = kcc
O = .rel
X = .exe
INCLUDE = /usr/include/
INCLUDE = c:

DEST	      = /usr/local/bin
DEST	      = TEX:

MANDIR	      = /usr/local/man/manl
MANDIR	      = NUL:

MANUAL	      = makeindex.l

DOC	      = makeindex.tex

EXTHDRS	      = ${INCLUDE}ctype.h \
		${INCLUDE}stdio.h

HDRS	      = genind.h \
		mkind.h \
		scanid.h \
		scanst.h

# The -Dshort=int is needed for KCC versions before 583 (13-Jan-88);
# that version or later works correctly if it is dropped
CFLAGS        = -DOS_TOPS20 -DKCC_20 -DSHORTNAMES -Dshort=int

LDFLAGS	      = $(CFLAGS)

LIBS	      =

LINKER	      = $(CC)

MAKEFILE      = Makefile

OBJS	      = genind${O} \
		mkind${O} \
		qsort${O} \
		scanid${O} \
		scanst${O} \
		sortid${O}

PRINT	      = psgrind

SRCS	      = genind.c \
		mkind.c \
		qsort.c \
		scanid.c \
		scanst.c \
		sortid.c

PROGRAM	      = makeindex

TAR	      = $(PROGRAM).tar

SHAR	      = $(PROGRAM).shar

ALL	      = $(MAKEFILE) $(DOC) $(MANUAL) $(HDRS) $(SRCS)

$(PROGRAM):     $(PROGRAM)$(X)

$(PROGRAM)$(X):	$(OBJS)
		$(LINKER) $(LDFLAGS) $(OBJS) $(LIBS) -o makidx$(X)
		reset
		${MV} makidx$(X) $(PROGRAM)$(X)

install:	$(PROGRAM)
		install -c -s -m 0755 $(PROGRAM) $(DEST)
		@ls -lgs $(DEST)/$(PROGRAM)

tar:;		@rm -f $(TAR)
		tar -cf $(TAR) $(ALL)

shar:;		@rm -f $(SHAR)
		shar $(SHAR) $(ALL)

dist:;		cp $(PROGRAM) $(DEST)
		rcp $(PROGRAM) monet:$(DEST)
		rcp $(PROGRAM) arpa:$(DEST)
		rcp $(PROGRAM) harrison@vangogh:bin

clean:;		@rm -f $(OBJS) core $(PROGRAM) *${O}ut

depend:;	@rm -f .#*.[chly]
		mkmf -f $(MAKEFILE) PROGRAM=$(PROGRAM) DEST=$(DEST)

index:;		@ctags -wx $(HDRS) $(SRCS)

print:;		@$(PRINT) $(HDRS) $(SRCS)

man:;		ptroff -man $(MANUAL)

program:        $(PROGRAM)

tags:           $(HDRS) $(SRCS); @ctags $(HDRS) $(SRCS)

update:		$(DEST)/$(PROGRAM)

$(DEST)/$(PROGRAM): $(SRCS) $(HDRS) $(EXTHDRS)
		@make -f $(MAKEFILE) DEST=$(DEST) install

.DEFAULT:;	co $@
###
genind${O}: mkind.h ${INCLUDE}stdio.h ${INCLUDE}ctype.h \
	genind.h
mkind${O}: mkind.h ${INCLUDE}stdio.h ${INCLUDE}ctype.h
qsort${O}: mkind.h ${INCLUDE}stdio.h
scanid${O}: mkind.h ${INCLUDE}stdio.h ${INCLUDE}ctype.h \
	scanid.h
scanst${O}: mkind.h ${INCLUDE}stdio.h ${INCLUDE}ctype.h \
	scanst.h
sortid${O}: mkind.h ${INCLUDE}stdio.h ${INCLUDE}ctype.h