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

⟦6a29d1764⟧ TextFile

    Length: 573 (0x23d)
    Types: TextFile
    Names: »Makefile«

Derivation

└─⟦9ae75bfbd⟧ Bits:30007242 EUUGD3: Starter Kit
    └─⟦cfd40dc56⟧ »EurOpenD3/news/nntp/nntp.1.5.8.tar.Z« 
        └─⟦2ec98eca6⟧ 
            └─⟦this⟧ »support/Makefile« 
└─⟦9ae75bfbd⟧ Bits:30007242 EUUGD3: Starter Kit
    └─⟦5cced586a⟧ »EurOpenD3/news/nntp/nntp.1.5.7.tar.Z« 
        └─⟦7340f105e⟧ 
            └─⟦this⟧ »./support/Makefile« 

TextFile

#
# Makefile for NNTP server support programs
#

OBJS	=	mkgrdates.o

SRCS	=	mkgrdates.c

HFILES	=	../common/conf.h

CFLAGS= -O

# Where these support programs will live

DESTDIR	= /usr/lib/news

all: mkgrdates

mkgrdates: mkgrdates.o
	$(CC) ${CFLAGS} -o mkgrdates mkgrdates.o

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

lint:
	lint mkgrdates.c

clean:
	-rm -f *.o mkgrdates

distrib: clean
	rm -rf SCCS old

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

tags:	${SRCS} ${HFILES}
	ctags ${SRCS} ${HFILES}

${OBJS}:	${HFILES}