|
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: 704 (0x2c0) Types: TextFile Names: »m4munge«
└─⟦a0efdde77⟧ Bits:30001252 EUUGD11 Tape, 1987 Spring Conference Helsinki └─⟦this⟧ »EUUGD11/euug-87hel/sec1/se/m4munge«
#! /bin/sh # m4munge --- take what the 'where' command produces, and change it for m4 # # $Header: m4munge,v 1.2 86/07/11 15:13:56 osadr Exp $ # # $Log: m4munge,v $ # Revision 1.2 86/07/11 15:13:56 osadr # Removed Georgia Tech specific items. # # Revision 1.1 86/05/06 13:35:02 osadr # Initial revision # # # for i in $* do case $i in -DUSG) echo 'define(USG,YES)' ;; -UUSG) echo 'define(USG,NO)' ;; -DBSD) echo 'define(BSD,YES)' ;; -UBSD) echo 'define(BSD,NO)' ;; -DBSD4_2) echo 'define(BSD4_2,YES)' ;; -UBSD4_2) echo 'define(BSD4_2,NO)' ;; -DS5R2) echo 'define(S5R2,YES)' ;; -US5R2) echo 'define(S5R2,NO)' ;; -DHARD_TERMS) echo 'define(HARD_TERMS,YES)' ;; esac done