makefile
来自「nRF24E1 sample sensor node code」· 代码 · 共 42 行
TXT
42 行
CC=g++CCFLAGS=-Wall -gOBJS= hello-incl hello-system hello-funct print-int print-arrayCOMPCXX=../../bin/cxxall: $(OBJS)hello-incl: hello-incl.cxx $(CC) $(CCFLAGS) -o hello-incl hello-incl.cxxhello-incl.cxx: hello-incl.h hello-incl.cc $(COMPCXX) hello-incl.cchello-system: hello-system.cxx $(CC) $(CCFLAGS) -o hello-system hello-system.cxxhello-system.cxx: hello-system.cc $(COMPCXX) hello-system.cchello-funct: hello-funct.cxx $(CC) $(CCFLAGS) -o hello-funct hello-funct.cxxhello-funct.cxx: hello-funct.cc $(COMPCXX) hello-funct.ccprint-int.cxx: print-int.cc $(COMPCXX) print-int.ccprint-int: print-int.cxx $(CC) $(CCFLAGS) -o print-int print-int.cxxprint-array.cxx: print-array.cc $(COMPCXX) print-array.ccprint-array: print-array.cxx $(CC) $(CCFLAGS) -o print-array print-array.cxxclean: rm $(OBJS) *.exe *.cxx compcxx_*.h
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?