summaryrefslogtreecommitdiff
path: root/sys/arch/hppa
diff options
context:
space:
mode:
authorMichael Shalayeff <mickey@cvs.openbsd.org>1998-06-23 20:23:32 +0000
committerMichael Shalayeff <mickey@cvs.openbsd.org>1998-06-23 20:23:32 +0000
commit8c6ef82db6e7bdbab41abdfc581800943c7ae103 (patch)
tree74c46a2898c897ec9b8f86c79ac401212242c9ee /sys/arch/hppa
parentab529aadfd592147f9baea9d98c276bcf81bb505 (diff)
std framework
Diffstat (limited to 'sys/arch/hppa')
-rw-r--r--sys/arch/hppa/Makefile30
-rw-r--r--sys/arch/hppa/compile/.cvsignore3
-rw-r--r--sys/arch/hppa/compile/.keep_me3
3 files changed, 36 insertions, 0 deletions
diff --git a/sys/arch/hppa/Makefile b/sys/arch/hppa/Makefile
new file mode 100644
index 00000000000..d38f3da8c78
--- /dev/null
+++ b/sys/arch/hppa/Makefile
@@ -0,0 +1,30 @@
+# $OpenBSD: Makefile,v 1.1 1998/06/23 20:23:29 mickey Exp $
+
+# Makefile for hppa tags file and boot blocks
+
+NOPROG= noprog
+NOMAN= noman
+
+SUBDIR= stand
+
+THPPA= ../hppa/tags
+SHPPA= ../hppa/hppa/*.[ch] ../hppa/include/*.h ../hppa/dev/*.[ch]
+AHPPA= ../hppa/hppa/*.S
+
+# Directories in which to place hppa tags links
+DHPPA= dev hppa include
+
+tags:
+ -ctags -dtf ${THPPA} ${COMM} ${SHPPA}
+ egrep "^ENTRY(.*)|^ALTENTRY(.*)" ${AHPPA} | \
+ sed "s;\([^:]*\):\([^(]*\)(\([^, )]*\)\(.*\);\3 \1 /^\2(\3\4$$/;" \
+ >> ${THPPA}
+ sort -o ${THPPA} ${THPPA}
+
+links:
+ -for i in ${DHPPA}; do \
+ cd $$i && rm -f tags; ln -s ../tags tags; done
+
+obj: _SUBDIRUSE
+
+.include <bsd.prog.mk>
diff --git a/sys/arch/hppa/compile/.cvsignore b/sys/arch/hppa/compile/.cvsignore
new file mode 100644
index 00000000000..82d9a11a511
--- /dev/null
+++ b/sys/arch/hppa/compile/.cvsignore
@@ -0,0 +1,3 @@
+DISKLESS
+GENERIC
+RAMDISK
diff --git a/sys/arch/hppa/compile/.keep_me b/sys/arch/hppa/compile/.keep_me
new file mode 100644
index 00000000000..b62531ee783
--- /dev/null
+++ b/sys/arch/hppa/compile/.keep_me
@@ -0,0 +1,3 @@
+$OpenBSD: .keep_me,v 1.1 1998/06/23 20:23:31 mickey Exp $
+
+This file must remain so that 'cvs checkout' makes the compile directory.