mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-05 06:27:37 +00:00
b446a1d670
- build both standalone and inetd version - fix permissions on update - add IPv6 support based on work from Gert Doering If you used the inetd version, please change the path in /etc/inetd.conf from /usr/local/sbin/nntpd to /usr/local/libexec/nntpd.
81 lines
2.9 KiB
Plaintext
81 lines
2.9 KiB
Plaintext
--- Makefile.orig 1996-01-09 07:30:24 UTC
|
|
+++ Makefile
|
|
@@ -4,7 +4,7 @@
|
|
# The program that knows how to deal with makefiles. [Uncomment if needed.]
|
|
# MAKE=make
|
|
# set CFLAGS to be -Ipath/to/special/includes if needed
|
|
-CFLAGS= -O
|
|
+CFLAGS+= -I${LOCALBASE}/include
|
|
#Uncomment the following for Solaris (and similiar SVR4 systems)
|
|
#NETLIBS = -lsocket -lnsl
|
|
#Uncomment the following if the previous one does not work
|
|
@@ -20,11 +20,11 @@ CFLAGS= -O
|
|
#Uncomment the following for Solaris (and similiar SVR4 systems)
|
|
#KVMLIB = -lelf
|
|
# Where nntpd is going to live
|
|
-ETCDIR = /etc
|
|
+#ETCDIR = /usr/local/sbin
|
|
# Where nntpxmit and nntpxfer is going to live
|
|
-BINDIR = /usr/local/bin
|
|
+#BINDIR = /usr/local/libexec/cnews
|
|
# Where manual pages live
|
|
-MANDIR = /usr/local/man
|
|
+#MANDIR = /usr/local/man
|
|
#
|
|
LIBS = $(DBLIBS) $(RESLIB) $(NETLIBS) $(KVMLIB)
|
|
SUBMAKEFLAGS="LIBS=${LIBS}" "CFLAGS=${CFLAGS}" "ETCDIR=${ETCDIR}" "BINDIR=${BINDIR}" "MANDIR=${MANDIR}"
|
|
@@ -42,11 +42,12 @@ TYPE = server
|
|
all: make_$(TYPE)
|
|
|
|
make_server: /nowhere
|
|
- cd server; $(MAKE) $(MFLAGS) $(SUBMAKEFLAGS)
|
|
- cd support; $(MAKE) $(MFLAGS) $(SUBMAKEFLAGS)
|
|
- cd doc; $(MAKE) $(MFLAGS) $(SUBMAKEFLAGS)
|
|
- cd xmit; $(MAKE) $(MFLAGS) $(SUBMAKEFLAGS)
|
|
- cd xfer; $(MAKE) $(MFLAGS) $(SUBMAKEFLAGS)
|
|
+ $(MAKE) -C server $(MFLAGS) $(SUBMAKEFLAGS)
|
|
+ $(MAKE) -C inetd $(MFLAGS) $(SUBMAKEFLAGS)
|
|
+ $(MAKE) -C support $(MFLAGS) $(SUBMAKEFLAGS)
|
|
+ $(MAKE) -C doc $(MFLAGS) $(SUBMAKEFLAGS)
|
|
+ $(MAKE) -C xmit $(MFLAGS) $(SUBMAKEFLAGS)
|
|
+ $(MAKE) -C xfer $(MFLAGS) $(SUBMAKEFLAGS)
|
|
|
|
server: make_server
|
|
|
|
@@ -59,25 +60,26 @@ client: make_client
|
|
install: install_$(TYPE)
|
|
|
|
install_server:
|
|
- cd server; $(MAKE) $(MFLAGS) $(SUBMAKEFLAGS) install
|
|
- cd support; $(MAKE) $(MFLAGS) $(SUBMAKEFLAGS) install
|
|
- cd doc; $(MAKE) $(MFLAGS) $(SUBMAKEFLAGS) install
|
|
- cd xmit; $(MAKE) $(MFLAGS) $(SUBMAKEFLAGS) install
|
|
- cd xfer; $(MAKE) $(MFLAGS) $(SUBMAKEFLAGS) install
|
|
+ $(MAKE) -C server $(MFLAGS) $(SUBMAKEFLAGS) install
|
|
+ $(MAKE) -C inetd $(MFLAGS) $(SUBMAKEFLAGS) install
|
|
+ $(MAKE) -C support $(MFLAGS) $(SUBMAKEFLAGS) install
|
|
+ $(MAKE) -C doc $(MFLAGS) $(SUBMAKEFLAGS) install
|
|
+ $(MAKE) -C xmit $(MFLAGS) $(SUBMAKEFLAGS) install
|
|
+ $(MAKE) -C xfer $(MFLAGS) $(SUBMAKEFLAGS) install
|
|
|
|
install_msgidd:
|
|
- cd server; $(MAKE) $(MFLAGS) $(SUBMAKEFLAGS) install_msgidd
|
|
+ $(MAKE) -C server $(MFLAGS) $(SUBMAKEFLAGS) install_msgidd
|
|
|
|
clean:
|
|
- rm -f .[a-z]* *.CKP *.BAK *~ ; for i in $(DISTDIRS); do cd $$i; $(MAKE) $(MFLAGS) clean; cd ..; done
|
|
+ rm -f .[a-z]* *.CKP *.BAK *~ ; for i in $(DISTDIRS); do $(MAKE) -C $$i $(MFLAGS) clean; done
|
|
|
|
check:
|
|
- for i in $(DISTDIRS); do cd $$i; $(MAKE) $(MFLAGS) check; cd ..; done
|
|
+ for i in $(DISTDIRS); do $(MAKE) -C $$i $(MFLAGS) check; done
|
|
|
|
distrib: check
|
|
mkdir ../nntp.dist
|
|
cp -rp $(DIST) ../nntp.dist
|
|
- cd ../nntp.dist; for i in $(DISTDIRS); do cd $$i; $(MAKE) $(MFLAGS) distrib; cd ..; done
|
|
+ cd ../nntp.dist; for i in $(DISTDIRS); do $(MAKE) -C $$i $(MFLAGS) distrib; done
|
|
|
|
|
|
server: /nowhere
|