swh:1:snp:c2847dfd741eae21606027cf29250d1ebcd63fb4
Raw File
Tip revision: 5edb56491d4812c42175980759da53388e5d86f5 authored by Linus Torvalds on 12 June 2016, 14:20:35 UTC
Linux 4.7-rc3
Tip revision: 5edb564
Makefile
#
# linux/arch/arm/tools/Makefile
#
# Copyright (C) 2001 Russell King
#

quiet_cmd_gen_mach = GEN     $@
      cmd_gen_mach = mkdir -p $(dir $@) && \
		     $(AWK) -f $(filter-out $(PHONY),$^) > $@ || \
		     { rm -f $@; /bin/false; }

include/generated/mach-types.h: $(src)/gen-mach-types $(src)/mach-types FORCE
	$(call if_changed,gen_mach)
back to top