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

⟦b8dcad592⟧ TextFile

    Length: 660 (0x294)
    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/xnwm/Makefile« 

TextFile

# Copyright 1985, Massachusetts Institute of Technology

INCLUDES= -I../include
DESTDIR =
CONFDIR = /usr/new
CFLAGS = -O $(INCLUDES)

.SUFFIXES: .o .h .c .a

####	Maintainance keys    #####

all: xnwm

install:
	install -s xnwm ${DESTDIR}${CONFDIR}

clean: 
	rm -f  *.CKP *.BAK core *~ *.o xnwm \#*

#####     xnwm     #####

xnwm.o: wm.h extern.h
wmsubs.o: wm.h extern.h
globals.o: wm.h extern.h

xnwm: xnwm.o wmsubs.o globals.o ../Xlib/Xlib.h
	cc ${CFLAGS} -o xnwm xnwm.o wmsubs.o globals.o ../Xlib/libX.a

profiled:
	cc -p ${CFLAGS} -o profiled xnwm.c wmsubs.c globals.c ../Xlib/libX.a

xnwmlint:
	lint -h -b -x xnwm.c wmsubs.c globals.c ../Xlib/llib-lX.ln