
makefile
makefile
_沧海桑田_
ACL/NAACL/EMNLP/COLING审稿人,
MOD大侠梦/MOD禾下霸业作者。
github.com/guotong1988
展开
-
makefile 笔记
ASM = nasm ASMFLAGS = -I include/ TARGET = boot.bin loader.bin .PHONY : everything clean all everything : $(TARGET) #本例 make 和 make everything一样原创 2013-07-07 11:57:37 · 839 阅读 · 0 评论 -
Linux 字符设备驱动程序
/*====================================================================== A VirtualDisk driver as an example of char device drivers ========================================================原创 2015-01-27 18:04:44 · 723 阅读 · 0 评论 -
Linux CPP Makefile class 入门实例
DataFrame.h #include <iostream> using namespace std; class DataFrame { public: int getm(); int geth(); void set(int hour, int min, int sec); int read_hour() {return h;} i...原创 2018-07-04 11:15:19 · 1504 阅读 · 0 评论 -
Linux CPP Makefile class 入门实例2
DataFrame.h #include <iostream> using namespace std; class DataFrame { public: int getm(); int geth(); void set(int hour, int min, int sec); int read_hour() {return h;} i...原创 2018-07-04 11:25:56 · 1367 阅读 · 0 评论 -
cmake add_custom_command 无效
加上SOURCES试试,如下 #... set(PROTO_DIR ${CMAKE_SOURCE_DIR}/src/protos) set(PROTO_FILES ner.proto) set(PROTO_H ner.pb.h) set(PROTO_CC ner.pb.cc) add_custom_command( OUTPUT ${PROTO_H} ${PROTO_CC} CO...原创 2019-04-10 15:28:01 · 1744 阅读 · 0 评论