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

⟦da5e4f88a⟧ TextFile

    Length: 750 (0x2ee)
    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/xclock/Makefile« 

TextFile

#
# Copyright, 1985, Massachusetts Institute of Technology.
#	xclock - makefile for the X window system clock.
#
#	Written by:	Tony Della Fera, DEC
#			11-Sep-84
#

DESTDIR =
INCLUDES = -I../include

CONFDIR = /usr/new
XLIB = ../Xlib/libX.a
CFLAGS = -O $(INCLUDES)
CLIBS = -lm

.SUFFIXES: .o .h .c .a

OBJS = xclock.o

all: xclock

debug: xclock_d

install: all
	install -s xclock $(DESTDIR)$(CONFDIR)
	chmod 755 $(DESTDIR)$(CONFDIR)/xclock

clean: 
	rm -f *~* *.bak core \#*
	rm -f xclock.c.[0-9]* Makefile.[0-9]* xclock.1.[0-9]*
	rm -f xclock.o xclock xclock_d

igrind:
	igrind xclock.c

xclock: $(OBJS) $(XLIB)
	$(CC) $(CFLAGS) -o xclock $(OBJS) $(XLIB) $(CLIBS)

xclock_d: $(OBJS) $(XLIB)
	$(CC) $(CFLAGS) -g -o xclock_d $(OBJS) $(XLIB) $(CLIBS)