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

⟦873d2f574⟧ TextFile

    Length: 315 (0x13b)
    Types: TextFile
    Names: »Makefile«

Derivation

└─⟦9ae75bfbd⟧ Bits:30007242 EUUGD3: Starter Kit
    └─⟦5c79bab04⟧ »EurOpenD3/mail/pop/pop3d.tar.Z« 
        └─⟦150fd6a32⟧ 
            └─⟦this⟧ »Makefile« 

TextFile

# make file for the IP/TCP/POP3 server for VAX/UNIX 4.3BSD

CFLAGS=-O

OBJS	= main.o folder.o util.o

all: pop3d

install: all
	install -c -m 711 pop3d $(DESTDIR)/etc/pop3d

clean: all
	rm -f *.o core pop3d

pop3d: $(OBJS)
	cc -o pop3d $(OBJS)

main.o:	main.c pop3.h
folder.o: folder.c pop3.h
util.o: util.c pop3.h