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

⟦db6f408ee⟧ TextFile

    Length: 292 (0x124)
    Types: TextFile
    Names: »setup-1.awk«

Derivation

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

TextFile

# Remove all comments from makefiles (starting with #)
# except for C preprocessor #xxx things. Also removes empty lines.
		{if (length($0) == 0) continue; }
/^#define/	{print $0; next}
/^#if/		{print $0; next}
/^#else/	{print $0; next}
/^#endif/	{print $0; next}
/^#/		{next;}
		{print $0;}