diff options
Diffstat (limited to 'isa/Makefile')
-rw-r--r-- | isa/Makefile | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/isa/Makefile b/isa/Makefile new file mode 100644 index 0000000000000..796f43b22e0c4 --- /dev/null +++ b/isa/Makefile @@ -0,0 +1,20 @@ +# $Id: Makefile 2903 2013-01-16 12:35:50Z jkoshy $ + +TOP= .. + +PROG= isa +SRCS= isa.c +LSRC= +YSRC= +LDADD= -lelftc + +ISA= avr.isa + +MAN= isa.1 isa.5 + +check-specifications: .PHONY +.for f in ${ISA} + ${.OBJDIR}/${PROG} -n --query ${f} +.endfor + +.include "${TOP}/mk/elftoolchain.prog.mk" |