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

⟦f67a19487⟧ TextFile

    Length: 828 (0x33c)
    Types: TextFile
    Names: »Makefile«

Derivation

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

TextFile

#
# Makefile for pseudo-inews
#

SRCS	=	inews.c uname.c ../common/clientlib.c ../common/version.c
OBJS	=	inews.o uname.o ../common/clientlib.o ../common/version.o
HFILES	=	../common/nntp.h ../common/conf.h

CFLAGS	= -O

LIBS	=

DESTDIR	= /usr/local

inews:  $(OBJS) $(HFILES)
	$(CC) $(CFLAGS) $(OBJS) -o inews $(LIBS)

uname.o: ../common/conf.h

../common/clientlib.o:
	${CC} ${CFLAGS} -DNNTPSRC -c ../common/clientlib.c
	mv clientlib.o ../common/clientlib.o

../common/version.o:
	${CC} ${CFLAGS} -c ../common/version.c
	mv version.o ../common/version.o

install: inews
	cp inews ${DESTDIR}/inews
	chmod 755 ${DESTDIR}/inews

clean:
	-rm -f ${OBJS} inews make*.out

distrib: clean
	rm -f make.out
	rm -rf SCCS

check:
	sccs check
	sccs prt -y *.[ch] > /dev/null

lint:
	lint ${SRCS} ${HFILES}

tags:
	ctags $(CFILES) $(HFILES)