[BACK]Return to Makefile CVS log [TXT][DIR] Up to [Development] / linux-2.4-xfs / arch / ppc / boot / utils

File: [Development] / linux-2.4-xfs / arch / ppc / boot / utils / Makefile (download)

Revision 1.1, Wed Dec 31 00:54:49 2003 UTC (13 years, 10 months ago) by cattelan
Branch: MAIN
CVS Tags: HEAD

Initial Import 2.4.24pre2

#
# arch/ppc/boot/utils/Makefile
#
# This file is subject to the terms and conditions of the GNU General Public
# License.  See the file "COPYING" in the main directory of this archive
# for more details.

HOSTCFLAGS += -I$(TOPDIR)/arch/$(ARCH)/boot/include

all: dummy

# Simple programs with 1 file and no extra CFLAGS
UTILS = addnote hack-coff mkbugboot mkprep mknote mktree

$(UTILS):
	$(HOSTCC) $(HOSTCFLAGS) -o $@ $@.c

clean:
	rm -f $(UTILS)

include $(TOPDIR)/Rules.make