home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Fred Fish Collection 1.5
/
ffcollection-1-5-1992-11.iso
/
ff_disks
/
300-399
/
ff319.lzh
/
CNewsSrc
/
cnews.orig.lzh
/
rna
/
makefile
< prev
next >
Wrap
Makefile
|
1989-06-27
|
3KB
|
112 lines
# australian readnews makefile
# =()<NEWSARTS = @<NEWSARTS>@>()=
NEWSARTS = /usr/spool/news
# =()<NEWSBIN = @<NEWSBIN>@>()=
NEWSBIN = /usr/lib/newsbin
# =()<NEWSCTL = @<NEWSCTL>@>()=
NEWSCTL = /usr/lib/news
# workaround for System V make bug
SHELL = /bin/sh
DEFINES=
COPTS=-O
CFLAGS=$(COPTS) $(DEFINES)
INSTALL=:# install bigpdp
NFLAG =
LINT = lint -ha $(DEFINES)
I=/usr/include
C=/lib/libc.a
LIBS=lib/lib.a ../libcnews.a
BIN=/bin
BINDIR=$(BIN)
COMMANDS = postnews uurec readnews uusend expire postgroup
FILES = help
LCOMMANDS = postnews.lint uurec.lint readnews.lint uusend.lint expire.lint
PFILES = header.c postnews.c funcs.c active.c history.c maketime.c mtempnam.c
RFILES = header.c readnews.c funcs.c active.c newsrc.c history.c maketime.c
ROFILES= header.o readnews.o funcs.o active.o newsrc.o history.o maketime.o
EFILES = expire.c funcs.c active.c
.c.lint:
$(LINT) $< > $@
.c:
$(CC) $(CFLAGS) $*.c $(NFLAG) -o $(@F)
$(INSTALL) $* bin 711 $@
.sh:
$(INSTALL) -c $*.sh bin 755 $@
all: readnews checknews
: warning, defs.h may not be right for your system
readnews: $(ROFILES) defs.h $(LIBS)
$(CC) $(CFLAGS) $(ROFILES) $(LIBS) -o $@
newsinstall:
: "install all control files; don't overwrite any!"
-if test ! -r $(NEWSCTL)/news.help; then cp news.help $(NEWSCTL); fi
# bininstall: make directories, install programs
bininstall: install
install: $(BINDIR)/readnews $(BINDIR)/checknews
$(BINDIR)/readnews: readnews
cp readnews $(BINDIR)
: "$(INSTALL) - readnews bin 711 $(BINDIR)/readnews $(BINDIR)/news"
$(BINDIR)/checknews: checknews
chmod +x checknews
cp checknews $(BINDIR)
defs.h: at.h # $C
touch defs.h
lint: $(LCOMMANDS)
help: $(NEWSCTL)/help
$(NEWSCTL)/help: news.help
$(INSTALL) -c news.help news 644 $(NEWSCTL)/help
lib/lib.a:
: if you do not have ranlib, you will need to edit lib/makefile
(cd lib; make)
$(ROFILES): defs.h
postnews: $(BINDIR)/postnews
$(BINDIR)/postnews: $(PFILES) defs.h
$(CC) $(CFLAGS) $(PFILES) -o postnews
$(INSTALL) - postnews news 6711 $(BINDIR)/postnews
postgroup: $(BINDIR)/postgroup
$(BINDIR)/postgroup: postgroup.sh
uurec: $(NEWSCTL)/uurec
$(NEWSCTL)/uurec: uurec.c defs.h
uusend: $(NEWSCTL)/uusend
$(NEWSCTL)/uusend: defs.h uusend.c
expire: $(NEWSCTL)/expire
$(NEWSCTL)/expire: $(EFILES) defs.h
$(CC) $(CFLAGS) $(EFILES) $(NFLAG) -o expire
$(INSTALL) expire news 700 $(NEWSCTL)/expire
postnews.lint: $(PFILES)
$(LINT) $(PFILES) > postnews.lint
readnews.lint: $(RFILES)
$(LINT) $(RFILES) > readnews.lint
expire.lint: $(EFILES)
$(LINT) $(EFILES) > expire.lint
uurec.lint: uurec.c defs.h
uusend.lint: uusend.c defs.h
.FINISH:
rm -s *.o
clean:
rm -f *.o core a.out readnews
(cd lib ; make clean)