⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 makefile

📁 SensorSimII is the framework of a simulator that I have been working on to study how future sensor n
💻
字号:
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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -