30 lines
664 B
Makefile
30 lines
664 B
Makefile
# $NetBSD: Makefile,v 1.1 2004/10/13 23:28:35 gavan Exp $
|
|
|
|
# Makefile for iyonix tags file and boot blocks
|
|
|
|
TIYONIX= ../iyonix/tags
|
|
SIYONIX= ../iyonix/include/*.h \
|
|
../iyonix/dev/*.[ch] \
|
|
#AIYONIX=
|
|
|
|
# Directories in which to place tags links
|
|
DIYONIX= include
|
|
|
|
.include "../../kern/Make.tags.inc"
|
|
|
|
tags:
|
|
-ctags -wdtf ${TIYONIX} ${SIYONIX} ${COMM}
|
|
# egrep "^ENTRY(.*)|^ALTENTRY(.*)" ${AIYONIX} | \
|
|
# sed "s;\([^:]*\):\([^(]*\)(\([^, )]*\)\(.*\);\3 \1 /^\2(\3\4$$/;" \
|
|
# >> ${TIYONIX}
|
|
sort -o ${TIYONIX} ${TIYONIX}
|
|
|
|
links:
|
|
-for i in ${DIYONIX}; do \
|
|
cd $$i && rm -f tags; ln -s ../tags tags; done
|
|
|
|
|
|
SUBDIR= compile include
|
|
|
|
.include <bsd.subdir.mk>
|