summaryrefslogtreecommitdiff
path: root/sys/arch/macppc/Makefile
AgeCommit message (Collapse)Author
2009-08-07Update path to the atheros HAL.snj
2008-10-25Use ${TOOL_SED} instead if plain sed in Makefiles.apb
2007-12-31Fix 'tags' target.dyoung
2005-12-11merge ktrace-lwp.christos
2005-03-02Write tab-separated records to 'tags' file. A popular vi-alike,dyoung
vim, expects for the columns in tags files to be tab-separated, but these makefiles created space-separated records for the assembly sources.
2004-03-13Add a 'tags' target to macppc.dyoung
2003-01-06Rework how KERNOBJDIR functions; now it's always determined withlukem
cd ${KERNSRCDIR}/${KERNARCHDIR}/compile && ${PRINTOBJDIR} This is far simpler than the previous system, and more robust with objdirs built via BSDOBJDIR. The previous method of finding KERNOBJDIR when using BSDOBJDIR by referencing _SRC_TOP_OBJ_ from another directory was extremely fragile due to the depth first tree walk by <bsd.subdir.mk>, and the caching of _SRC_TOP_OBJ_ (with MAKEOVERRIDES) which would be empty on the *first* pass to create fresh objdirs. This change requires adding sys/arch/*/compile/Makefile to create the objdir in that directory, and descending into arch/*/compile from arch/*/Makefile. Remove the now-unnecessary .keep_me files whilst here. Per lengthy discussion with Andrew Brown.
1998-06-12Rework the way kernel include files are installed. In the new method,cgd
as with user-land programs, include files are installed by each directory in the tree that has includes to install. (This allows more flexibility as to what gets installed, makes 'partial installs' easier, and gives us more options as to which machines' includes get installed at any given time.) The old SYS_INCLUDES={symlinks,copies} behaviours are _both_ still supported, though at least one bug in the 'symlinks' case is fixed by this change. Include files can't be build before installation, so directories that have includes as targets (e.g. dev/pci) have to move those targets into a different Makefile.
1998-05-15Initial import of macppc port.tsubai