2013年8月22日
摘要: Makefile的规则如下:target ... : prerequisites ...command ... ...target可以是一个目标文件,也可以是Object File(例如helloworld.obj),也可以是执行文件和标签。prerequisites就是生成target所需要的文件或是目标。command也就是要达到target这个目标所需要执行的命令。下面就是编译helloworld的makefile。helloworld : helloworld.o cc -o helloworld helloworld .ohelloworld.o : helloworld.c cc 阅读全文
posted @ 2013-08-22 22:45 meizixiong 阅读(132) 评论(0) 推荐(0) 编辑
摘要: 一、有用的网址:https://forum.videolan.org/search.php二、只编译Java apk部分:source env.shmake distcleanmake -e编译全部:sh compile.sh见https://forum.videolan.org/viewtopic.php?f=35&t=108965&p=369068&hilit=compile+java#p369068三、启动vlc:Intent in = new Intent(Intent.ACTION_VIEW, Uri.parse("udp://@10.11.11.1 阅读全文
posted @ 2013-08-22 19:57 meizixiong 阅读(275) 评论(0) 推荐(0) 编辑