1# $NetBSD: Makefile,v 1.6 2014/03/09 22:01:31 christos Exp $ 2 3# $FreeBSD: src/cddl/usr.bin/ctfconvert/Makefile,v 1.1.4.1 2009/08/03 08:13:06 kensmith Exp $ 4 5.include <bsd.own.mk> 6 7.include "../../Makefile.inc" 8.include "../../Makefile.ctf" 9 10.PATH: ${OPENSOLARIS_USR_DISTDIR}/tools/ctf/cvt 11 12DEBUG_FLAGS= -g 13 14PROG= ctfconvert 15 16SRCS= alist.c \ 17 ctf.c \ 18 ctfconvert.c \ 19 dwarf.c \ 20 fixup_tdescs.c \ 21 hash.c \ 22 iidesc.c \ 23 input.c \ 24 list.c \ 25 memory.c \ 26 merge.c \ 27 output.c \ 28 st_parse.c \ 29 stabs.c \ 30 stack.c \ 31 strtab.c \ 32 symbol.c \ 33 tdata.c \ 34 traverse.c \ 35 util.c 36 37 38.include <bsd.prog.mk> 39