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

⟦98668a586⟧ TextFile

    Length: 573 (0x23d)
    Types: TextFile
    Names: »Makefile«

Derivation

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

TextFile

# PRINTSERVER makefile

#COPTS  = 
COPTS  = -O
#CDEFS  = -DDEBUG 
CDEFS  =
INCDIR =
CFLAGS = $(COPTS) $(CDEFS) $(INCDIR)

LFLAGS = 
LIBS   = 
BIN_DIR = 
PROG = year

CFILES = \
	main.c \
	days.c \
	early.c 


OFILES = $(CFILES:.c=.o)
LFILES = $(CFILES:.c=.ln)

.SUFFIXES: .ln
.c.ln:
	lint -abchu $(INCDIR) $*.c

build	: $(PROG)

pbuild	: $(OFILES)
	cc -p -o $(PROG) $(LFLAGS)  $(OFILES)  $(LIBS)

all	: $(PROG) lint

$(PROG): $(OFILES)
	cc -o $(PROG) $(LFLAGS)  $(OFILES)  $(LIBS)

install	: $(PROG) 
	mv $(PROG) $(BIN_DIR)

lint	: $(LFILES)

clean	:
	-rm $(PROG)
	-rm *.o