|
|
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: T m
Length: 2642 (0xa52)
Types: TextFile
Names: »makefile.msc«
└─⟦52210d11f⟧ Bits:30007239 EUUGD2: TeX 3 1992-12
└─⟦c319c2751⟧ »unix3.0/TeX3.0.tar.Z«
└─⟦036c765ac⟧
└─⟦this⟧ »TeX3.0/LaTeX/LaTeXmakeindex/src/makefile.msc«
└─⟦060c9c824⟧ Bits:30007080 DKUUG TeX 2/12/89
└─⟦this⟧ »./tex82/LaTeX/LaTeXmakeindex/src/makefile.msc«
└─⟦52210d11f⟧ Bits:30007239 EUUGD2: TeX 3 1992-12
└─⟦63303ae94⟧ »unix3.14/TeX3.14.tar.Z«
└─⟦c58930e5c⟧
└─⟦this⟧ »TeX3.14/LaTeX/LaTeXmakeindex/src/makefile.msc«
# Makefile modified for IBM PC DOS (Microsoft C) [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 = cl
O = .obj
X = .exe
INCLUDE = /usr/include
INCLUDE = c:\sys\msc\include
DEST = /usr/local/bin
DEST = c:/usr/bin
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
XCFLAGS=
CFLAGS= -AL -Zd -Oailt -W3 -Zi -DOS_PCDOS -DIBM_PC_MICROSOFT $(XCFLAGS)
LDFLAGS = $(CFLAGS)
LIBS =
LINKER = link
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 = makeindx
TAR = $(PROGRAM).tar
SHAR = $(PROGRAM).shar
ALL = $(MAKEFILE) $(DOC) $(MANUAL) $(HDRS) $(SRCS)
# Default stack is too small--increase
STACKSIZE=8000
LINKFLAGS=/MAP/LINE/ST:$(STACKSIZE)
# Rules...
.c.obj:; $(CC) -c $(CFLAGS) $*.c >$*.clg
errshow <$*.clg >$*.cer
del $*.clg
.map.sym:; mapsym $*
del $*.map
RM = del
$(PROGRAM): $(PROGRAM)$(X)
$(PROGRAM)$(X): $(OBJS)
# @rm -f $(PROGRAM)
$(LINKER) $(OBJS),$*,$(LIBS)$(LINKFLAGS);
# @size $(PROGRAM)
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