Fix malloc->kmalloc leftover to fix kernel without VGA_NO_MODE_CHANGE
[dragonfly.git] / sys / i386 / Makefile
blobc903ad8a3e84ef33ee0ae59dfc296bd8a48e5976
1 # $FreeBSD: src/sys/i386/Makefile,v 1.8 2000/01/27 01:22:06 mckusick Exp $
2 # $DragonFly: src/sys/i386/Attic/Makefile,v 1.6 2005/07/07 11:49:57 corecode Exp $
3 # @(#)Makefile 8.1 (Berkeley) 6/11/93
5 # Makefile for i386 links, tags file
7 # SYS is normally set in Make.tags.inc
8 # SYS=/sys
10 TAGDIR= i386
12 .include "../kern/Make.tags.inc"
14 all:
15 @echo "make links or tags only"
17 # Directories in which to place i386 tags links
18 DI386= acpica apm conf i386 include isa
20 links::
21 -for i in ${COMMDIR1}; do \
22 (cd $$i && { rm -f tags; ${LN} -s ../${TAGDIR}/tags tags; }) done
23 -for i in ${COMMDIR2}; do \
24 (cd $$i && { rm -f tags; ${LN} -s ../../${TAGDIR}/tags tags; }) done
25 -for i in ${DI386}; do \
26 (cd $$i && { rm -f tags; ${LN} -s ../tags tags; }) done
28 SI386= ${SYS}/i386/acpica/*.[ch] ${SYS}/i386/apm/*.[ch] \
29 ${SYS}/i386/i386/*.[ch] ${SYS}/i386/include/*.[ch] \
30 ${SYS}/i386/isa/*.[ch]
31 AI386= ${SYS}/i386/i386/*.s
33 tags::
34 -ctags -wdt ${COMM} ${SI386}
35 egrep "^ENTRY(.*)|^ALTENTRY(.*)" ${AI386} | \
36 sed "s;\([^:]*\):\([^(]*\)(\([^, )]*\)\(.*\);\3 \1 /^\2(\3\4$$/;" \
37 >> tags
38 sort -o tags tags
39 chmod 444 tags