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 - download
Index: ┃ M T

⟦a34c50e4a⟧ TextFile

    Length: 774 (0x306)
    Types: TextFile
    Names: »Makefile«

Derivation

└─⟦a0efdde77⟧ Bits:30001252 EUUGD11 Tape, 1987 Spring Conference Helsinki
    └─ ⟦this⟧ »EUUGD11/euug-87hel/sec1/clex/Makefile« 

TextFile

# Makefile for clex/cparse
INCLUDE=/usr/local/include/CC
CCC=/user/local/CC
CCOPTS= -g -O
# -g: include debug info  -O: optimize

all: kwhash clex_test

kwhash: kwhash.c /usr/include/stdio.h
		/bin/cc ${CCOPTS} -o kwhash kwhash.c

clex_test: clex_test.o clex.o
		${CCC} -g -o clex_test clex_test.o clex.o

.c.o:
		/usr/lib/cpp -I${INCLUDE} -Dc_plusplus=1 $*.c >$*.cpp
		/user/mentor/local/cfront +L +f$*.c <$*.cpp >$*..c && /bin/rm $*.cpp
		/bin/cc -c ${CCOPTS} $*..c && /bin/mv $*..o $*.o

clex.o: ${INCLUDE}/stdio.h \
         ${INCLUDE}/stream.h \
         ${INCLUDE}/string.h \
         ${INCLUDE}/stdlib.h \
         ${INCLUDE}/ctype.h \
         ${INCLUDE}/assert.h \
         clex.h clex_sym.h

clex_test.o:    ${INCLUDE}/stdio.h \
                clex.h clex_sym.h