diff options
Diffstat (limited to 'utils/cec-ctl/Makefile.am')
-rw-r--r-- | utils/cec-ctl/Makefile.am | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/utils/cec-ctl/Makefile.am b/utils/cec-ctl/Makefile.am new file mode 100644 index 00000000..a959acc2 --- /dev/null +++ b/utils/cec-ctl/Makefile.am @@ -0,0 +1,11 @@ +bin_PROGRAMS = cec-ctl + +cec_ctl_SOURCES = cec-ctl.cpp + +cec-ctl.cpp: cec-ctl-gen.h + +cec-ctl-gen.h: msg2ctl.pl ../../include/linux/cec.h ../../include/linux/cec-funcs.h + ./msg2ctl.pl 0 ../../include/linux/cec.h ../../include/linux/cec-funcs.h >$@ + +clean-local: + -rm -vf cec-ctl-gen.h |