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 - metrics - download
Index: M T

⟦b66d3f0df⟧ TextFile

    Length: 1211 (0x4bb)
    Types: TextFile
    Names: »Makefile«

Derivation

└─⟦9ae75bfbd⟧ Bits:30007242 EUUGD3: Starter Kit
    └─⟦bfebc70e2⟧ »EurOpenD3/mail/sendmail-5.65b+IDA-1.4.3.tar.Z« 
        └─⟦f9e35cd84⟧ 
            └─⟦this⟧ »sendmail/ida/aux/Makefile« 

TextFile

#
#  MAKEFILE -- Auxiliary Files.
#  Copyright (c) 1987 Lennart Lovstrand
#  CIS Dept, Univ of Linkoping, Sweden
#
#  Use it, abuse it, but don't sell it.
#
#  Rmail has it's own options, go change them there.
#

BINS=		dbm mkdomext scanf xalparse
CFLAGS=		-O -DVMUNIX -I$(INCLUDEDIR)

#  The following definitions are inserted by ../Makefile
#  Change them there--not here!
CC=		gcc -ansi -Dvax -fpcc-struct-return -fstrength-reduce
BINDIR=		/usr/local/bin
LIBDIR=		/usr/local/lib/mail
SRCDIR=		../../src
INCLUDEDIR=	../../src
DBMLIB=		-ldbm
GDBM=
SDBM=
MDBM=

all:		$(BINS) rmail

dbm:		dbm.c
		$(CC) $(CFLAGS) $(GDBM) $(SDBM) -o dbm dbm.c $(DBMLIB)

rmail:		rmail.c
		$(CC) $(CFLAGS) $(GDBM) $(SDBM) -o rmail rmail.c $(DBMLIB)

mkdomext:	mkdomext.c
		$(CC) $(CFLAGS) -o mkdomext mkdomext.c

xalparse:	xalparse.c
		$(CC) $(CFLAGS) -o xalparse xalparse.c

scanf:		scanf.c
		$(CC) $(CFLAGS) -o scanf scanf.c

install:	$(BINS)
		cp $(BINS) $(BINDIR)
		cd $(BINDIR); strip $(BINS)
		@echo '>>> Do "make install-rmail" to explitly install rmail.'

install-rmail:	rmail
		install -m 4755 -o root -s rmail /bin

clean:
		-rm -f \#* *~ *.o $(BINS) rmail

.c.o:
		$(CC) $(CFLAGS) -c $<

.c:
		$(CC) $(CFLAGS) -o $@ $<