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

⟦b35438d8e⟧ TextFile

    Length: 541 (0x21d)
    Types: TextFile
    Names: »Makefile«

Derivation

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

TextFile

.SUFFIXES:     .c

LIBS	      = -ltermcap

LINKER	      = cc
CC	      = cc
AR	      = ar
NM            = nm

MAKEFILE      = makefile

SRCS	      = $.c

OBJS	      = $.o

PROGRAMS      = appts\
		autocall\
		eappts\
		callme\
		vcal\
		lcal


all:		$(PROGRAMS)

appts:	appts.c
	$(CC) -O -o appts appts.c

autocall:	autocall.c
	$(CC) -O -o autocall autocall.c

callme:	callme.c
	$(CC) -O -o callme callme.c

eappts:	eappts.c
	$(CC) -O -o eappts eappts.c

vcal:	vcal.c
	$(CC) -O -o vcal vcal.c  $(LIBS)

lcal:	lcal.c
	$(CC) -O -o lcal lcal.c