NetBSD/sys/arch/hp300/Makefile

32 lines
714 B
Makefile
Raw Normal View History

# $NetBSD: Makefile,v 1.6 1997/05/07 17:28:55 mycroft Exp $
1994-10-26 10:22:45 +03:00
# @(#)Makefile 7.3 (Berkeley) 6/9/91
1995-08-04 11:40:31 +04:00
# Makefile for hp300 tags file and boot blocks
1995-08-04 11:40:31 +04:00
NOPROG= noprog
NOMAN= noman
1994-04-27 10:23:02 +04:00
SUBDIR= stand
THP300= ../hp300/tags
SHP300= ../hp300/hp300/*.[ch] ../hp300/include/*.h \
1995-08-04 11:40:31 +04:00
../hp300/dev/*.[ch]
AHP300= ../hp300/hp300/*.s
# Directories in which to place hp300 tags links
1995-08-04 11:40:31 +04:00
DHP300= dev hp300 include
tags:
-ctags -dtf ${THP300} ${COMM} ${SHP300}
egrep "^ENTRY(.*)|^ALTENTRY(.*)" ${AHP300} | \
sed "s;\([^:]*\):\([^(]*\)(\([^, )]*\)\(.*\);\3 \1 /^\2(\3\4$$/;" \
>> ${THP300}
sort -o ${THP300} ${THP300}
links:
-for i in ${DHP300}; do \
1995-08-04 11:40:31 +04:00
cd $$i && rm -f tags; ln -s ../tags tags; done
1994-04-27 10:23:02 +04:00
.include <bsd.prog.mk>