1# $NetBSD: Makefile,v 1.1 2014/07/16 20:59:58 riastradh Exp $ 2 3.include <bsd.own.mk> 4 5DRMSRCDIR= ../../dist/drm 6RADEONSRCDIR= ${DRMSRCDIR}/radeon 7MKREGTABLE= ../../radeon/mkregtable.awk 8 9RADEON_REGS= 10RADEON_REGS+= rn50 11RADEON_REGS+= r100 12RADEON_REGS+= r200 13RADEON_REGS+= rv515 14RADEON_REGS+= r300 15RADEON_REGS+= r420 16RADEON_REGS+= rs600 17RADEON_REGS+= r600 18RADEON_REGS+= evergreen 19RADEON_REGS+= cayman 20 21default-target: all 22 23all: .PHONY 24 25.for _regs_ in ${RADEON_REGS} 26all: ${_regs_}_reg_safe.h 27CLEANFILES+= ${_regs_}_reg_safe.h 28${_regs_}_reg_safe.h: ${MKREGTABLE} ${RADEONSRCDIR}/reg_srcs/${_regs_} 29 ${TOOL_AWK} -f ${MKREGTABLE} < ${RADEONSRCDIR}/reg_srcs/${_regs_} \ 30 > $@.tmp && \ 31 mv -f $@.tmp $@ 32.endfor 33 34clean: 35 rm -f ${CLEANFILES} 36