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

⟦0b8d401f4⟧ TextFile

    Length: 610 (0x262)
    Types: TextFile
    Names: »Makefile«

Derivation

└─⟦9ae75bfbd⟧ Bits:30007242 EUUGD3: Starter Kit
    └─⟦cfd40dc56⟧ »EurOpenD3/news/nntp/nntp.1.5.8.tar.Z« 
        └─⟦2ec98eca6⟧ 
            └─⟦this⟧ »xfer/Makefile« 

TextFile

#
# Makefile for nntpxfer
#
SRVRSRC = nntpxfer.c ../xmit/get_tcp_conn.c ../server/fakesyslog.c 

SRVROBJ = nntpxfer.o get_tcp_conn.o fakesyslog.o 

LIBS= -ldbm

CFLAGS= -O

nntpxfer: ${SRVROBJ}
	${CC} ${LDFLAGS} ${SRVROBJ} -o nntpxfer ${LIBS}

get_tcp_conn.o: ../xmit/get_tcp_conn.c ../xmit/get_tcp_conn.h
	${CC} ${CFLAGS} ${DEFS}	-c ../xmit/get_tcp_conn.c

fakesyslog.o: ../server/fakesyslog.c ../server/fakesyslog.h
	${CC} ${CFLAGS} ${DEFS} -c ../server/fakesyslog.c

nntpxfer.o: nntpxfer.c ../common/conf.h ../server/fakesyslog.h

clean:
	-rm -f *.o nntpxfer make*.out

distrib: clean
	rm -rf SCCS

check:;