|
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: I T
Length: 952 (0x3b8) Types: TextFile Names: »IMakefile«
└─⟦52210d11f⟧ Bits:30007239 EUUGD2: TeX 3 1992-12 └─⟦af5ba6c8e⟧ »unix3.0/DVIWARE.tar.Z« └─⟦ca79c7339⟧ └─⟦this⟧ »DVIware/laser-setters/dvi-to-ps/TeXPS/release/IMakefile«
# This makefile, when executed, generates two # files: # release.h (a file for C programs to include the # TeXPS release version number) # release.tex (the same file for the documentation) # Do NOT change the following two lines. Should be only # changed by patches. TEXPS_RELEASE = 3.11 TEXPS_DATE = August 16, 1990 RM = /bin/rm -f all prepare: release.h release.tex release.h: IMakefile @$(RM) $@ echo '/* Do not change this file, generated by the Makefile */' >> $@ echo '/* in this directory. */' >> $@ echo '#define RELEASE_VERSION "$(TEXPS_RELEASE)"' >> $@ echo '#define RELEASE_DATE "$(TEXPS_DATE)"' >> $@ release.tex: IMakefile @$(RM) $@ echo '% Do not change this file, generated by the Makefile' >> $@ echo '% in this directory. */' >> $@ echo '\def\TeXPSReleaseVersion{$(TEXPS_RELEASE)}' >> $@ echo '\def\TeXPSReleaseDate{$(TEXPS_DATE)}' >> $@ install: depend: relink: lint: clean:: $(RM) release.h release.tex