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: I T

⟦118421fb9⟧ TextFile

    Length: 955 (0x3bb)
    Types: TextFile
    Names: »IMakefile«

Derivation

└─⟦52210d11f⟧ Bits:30007239 EUUGD2: TeX 3 1992-12
    └─⟦af5ba6c8e⟧ »unix3.0/DVIWARE.tar.Z« 
        └─⟦ca79c7339⟧ 
            └─⟦this⟧ »DVIware/laser-setters/dvi-to-ps/TeXPS/sup/IMakefile« 

TextFile

GFLAG =
INC = -I../h -I../release
DEFS = -DSYS_V=$(SYS_V)
CFLAGS = $(INC) $(GFLAG) $(DEFS)
LDFLAGS = -s

LIB_DIR = ../lib

SRC = tokprep.c

all:	tokprep

# This program may be needed somewhere else and if specified as
# such it will be installed.
#if (COND_TOKPREP_INSTALL == 1)
install:	tokprep
	$(CP) tokprep $(TOKPREP_INSTALL_DIR)/tokprep
#else
install:
#endif

print:
	$(SOURCE_CODE_PRINT_COMMAND) keywlex.sh joinfiles.c tok-lex.awk tok-pr.awk tok-yacc.awk

tokprep:	tokprep.o
	@$(RM) $@ lint
	@cd ../otherc; make
	@cd $(LIB_DIR); make
	$(CC) $(LDFLAGS) -o $@ tokprep.o ../otherc/defaults.o ../otherc/sig.o $(LIB_DIR)/libics.a

lint:	$(SRC)
	lint $(SRC) > $@

relink:
	@$(RM) tokprep
	@make  tokprep

clean::
	$(RM) tokprep

depend:	$(SRC)
	maketd -mIMakefile $(INC) $(SRC)

# DO NOT DELETE THIS LINE - make depend DEPENDS ON IT
A=../release
B=../h

tokprep.o: $B/extfil.h $A/release.h tokprep.c

# *** Do not add anything here - It will go away. ***