The describe target now uses `\' as a separator, so correct the print-index

target in here. Also make the print-index target display the maintainers
address for easy griping.
This commit is contained in:
Gary Palmer
1995-03-23 21:03:32 +00:00
parent 9c2478af89
commit baa08da2d7

View File

@@ -1,4 +1,4 @@
# $Id: Makefile,v 1.13 1995/03/21 03:12:17 jkh Exp $
# $Id: Makefile,v 1.14 1995/03/21 03:57:19 jkh Exp $
#
SUBDIR= archivers audio cad comms databases devel editors games graphics \
japanese lang mail math net news print shells utils x11
@@ -13,4 +13,4 @@ ${.CURDIR}/INDEX:
@echo " Done."
print-index: ${.CURDIR}/INDEX
awk -F@ '{ printf("Port:\t%s\nPath:\t%s\nInfo:\t%s\n\n", $$1, $$2, $$4); }' < ${.CURDIR}/INDEX
awk -F\| '{ printf("Port:\t%s\nPath:\t%s\nInfo:\t%s\nMaint:\t%s\n\n", $$1, $$2, $$4, $$6); }' < ${.CURDIR}/INDEX