Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 12 Jun 2004 02:58:46 GMT
From:      Marcel Moolenaar <marcel@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 54672 for review
Message-ID:  <200406120258.i5C2wkWc031146@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=54672

Change 54672 by marcel@marcel_nfs on 2004/06/12 02:58:43

	Add some makefile foo to allow the source files to include
	<machine/gdb_machdep.h>, even though the header is not yet
	installed. It's too inconvenient at this time to have to
	copy the header...

Affected files ...

.. //depot/projects/gdb/usr.bin/kgdb/Makefile#6 edit

Differences ...

==== //depot/projects/gdb/usr.bin/kgdb/Makefile#6 (text+ko) ====

@@ -8,4 +8,11 @@
 
 WARNS?=	4
 
+CFLAGS+= -I.
+CLEANFILES+=machine
+beforedepend: machine
+machine:
+	rm -f ${.TARGET}
+	ln -s ../../sys/${MACHINE_ARCH}/include ${.TARGET}
+
 .include <bsd.prog.mk>



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200406120258.i5C2wkWc031146>