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

⟦a12e9bf64⟧ TextFile

    Length: 539 (0x21b)
    Types: TextFile
    Names: »Makefile«

Derivation

└─⟦a0efdde77⟧ Bits:30001252 EUUGD11 Tape, 1987 Spring Conference Helsinki
    └─ ⟦this⟧ »EUUGD11/gnu-31mar87/emacs/cpp/Makefile« 

TextFile

# Makefile for cccp in the Emacs distribution only.
# Here we assume that you are using sys V.0
# (since cccp is used by Emacs only to deal with shortnames lossage).
# Therefore, we add -DEMACS to CFLAGS and add -lPW to linking.

CFLAGS=-g -I. -DEMACS
cpp: cccp
	-rm cpp
	ln cccp cpp
cccp: cccp.o y.tab.o
	cc -o cccp -g cccp.o y.tab.o -lPW
testexp: y.tab.c
	cc -g -DTEST_EXP_READER y.tab.c -o testexp
y.tab.c: cexp.y
	echo expect 40 shift/reduce conflicts
	yacc cexp.y
cccp.o: cccp.c
y.tab.o: y.tab.c
lint:	y.tab.c
	lint -p y.tab.c cccp.c