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

⟦adfd99148⟧ TextFile

    Length: 622 (0x26e)
    Types: TextFile
    Names: »Makefile«

Derivation

└─⟦a0efdde77⟧ Bits:30001252 EUUGD11 Tape, 1987 Spring Conference Helsinki
    └─ ⟦526ad3590⟧ »EUUGD11/gnu-31mar87/X.V10.R4.tar.Z« 
        └─⟦2109abc41⟧ 
            └─ ⟦this⟧ »./X.V10R4/keycomp/Makefile« 

TextFile

# Copyright 1985, Massachusetts Institute of Technology
#
#	 - makefile for keycomp
#

DESTDIR =
CONFDIR = /usr/new
INCDIR = -I../include

CFLAGS = -O ${INCDIR}
XLIB = ../Xlib/libX.a
SRCS = keycomp.c
OBJS = keycomp.o
PROGRAM = keycomp

all: keycomp Xkeymap

clean: 
	rm -f *.bak *.o *~ $(PROGRAM) Xkeymap \#*

Xkeymap: Xkeymap.default keycomp
	keycomp <Xkeymap.default >Xkeymap

install: all
	install keycomp ${DESTDIR}${CONFDIR}
	cp Xkeymap.default ${DESTDIR}/usr/lib/Xkeymap.txt
	chmod 0644 ${DESTDIR}/usr/lib/Xkeymap.txt

keycomp: keycomp.o ../Xlib/libX.a
	cc $(CFLAGS) $(OBJS) -o $(PROGRAM) $(XLIB)

$(OBJS): $(SRCS)