citrun

watch C/C++ source code execute
Log | Files | Refs | LICENSE

Makefile (276B)


      1 PROGS=	citrun_report citrun_wrap
      2 
      3 SRCS_citrun_report=	report.awk
      4 SRCS_citrun_wrap=	wrap.sh
      5 
      6 citrun_wrap: wrap.sh
      7 	sed -e "s, PREFIX ,$(PREFIX)," ${.CURDIR}/wrap.sh > $@
      8 	chmod +x $@
      9 
     10 citrun_report: report.awk
     11 	cp ${.CURDIR}/report.awk $@
     12 	chmod +x $@
     13 
     14 
     15 .include <bsd.prog.mk>