1# 2# arch/ppc/boot/utils/Makefile 3# 4# This file is subject to the terms and conditions of the GNU General Public 5# License. See the file "COPYING" in the main directory of this archive 6# for more details. 7 8HOSTCFLAGS += -I$(TOPDIR)/arch/$(ARCH)/boot/include 9 10all: dummy 11 12# Simple programs with 1 file and no extra CFLAGS 13UTILS = addnote hack-coff mkbugboot mkprep mknote mktree 14 15$(UTILS): 16 $(HOSTCC) $(HOSTCFLAGS) -o $@ $@.c 17 18clean: 19 rm -f $(UTILS) 20 21include $(TOPDIR)/Rules.make 22