1 1.1 deraadt # $Id: Makefile,v 1.1 1993/10/12 03:22:18 deraadt Exp $ 2 1.1 deraadt # from: @(#)Makefile 7.3 (Berkeley) 7/24/92 3 1.1 deraadt 4 1.1 deraadt # Makefile for pmax tags file 5 1.1 deraadt 6 1.1 deraadt .include "../kern/Make.tags.inc" 7 1.1 deraadt 8 1.1 deraadt all: 9 1.1 deraadt @echo "make tags only" 10 1.1 deraadt 11 1.1 deraadt PMAX= /sys/pmax/conf/*.[ch] /sys/pmax/dev/*.[ch] /sys/pmax/include/*.[ch] \ 12 1.1 deraadt /sys/pmax/pmax/*.[ch] /sys/pmax/ultrix/*.[ch] 13 1.1 deraadt APMAX= /sys/pmax/pmax/*.s 14 1.1 deraadt 15 1.1 deraadt tags:: 16 1.1 deraadt -ctags -dt ${COMM} ${PMAX} 17 1.1 deraadt egrep "^ENTRY(.*)|^ALTENTRY(.*)" ${APMAX} | \ 18 1.1 deraadt sed "s;\([^:]*\):\([^(]*\)(\([^, )]*\)\(.*\);\3 \1 /^\2(\3\4$$/;" \ 19 1.1 deraadt >> tags 20 1.1 deraadt sort -o tags tags 21