makefile.am

来自「很少见的linux下的红外口的工具」· AM 代码 · 共 32 行

AM
32
字号
## $Id: Makefile.am,v 5.17 2002/03/28 21:26:54 lirc Exp $## Process this file with automake to produce Makefile.in ## here the correct driver is substituted in by the configure script## (or empty for none)EXTRA_DIST = lirc.hDIST_SUBDIRS = lirc_serial lirc_parallel lirc_i2c lirc_sir lirc_dev lirc_gpio \	lirc_it87 lirc_bt829SUBDIRS = @lirc_driver@CLEANFILES = *~if MANAGE_DEVICESinstall-exec-local: mklink mkdevuninstall-local: rmlink mkdevendifmklink:	test "@irtty@" = "" || test -L $(DESTDIR)$(devdir)/lirc || ($(mkinstalldirs) $(DESTDIR)$(devdir) && cd `dirname $(DESTDIR)@irtty@` && $(LN_S) `basename @irtty@` lirc)rmlink:	-test "@irtty@" = "" || $(RM) $(DESTDIR)$(devdir)/lircmkdev:	test "@driver@" != "mediafocusI" || test -c $(DESTDIR)$(devdir)/lirc || ($(mkinstalldirs) $(DESTDIR)$(devdir) && @mknod@ $(DESTDIR)$(devdir)/lirc c @lirc_major@ 0)rmdev:	-test "@driver@" != "mediafocusI" || test -c $(DESTDIR)$(devdir)/lirc || $(RM) $(DESTDIR)$(devdir)/lirc

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?