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

📄 makefile

📁 基于snmp/mib的网络数据获取系统设计与实现
💻
字号:
# Makefile for the SNMP Package# Targets are provided for building applications using the package,# the package as a jar file, and the source distribution.# Build the SNMP Inquisitor application as the SNMPInquisitor.jar fileSNMPInquisitor: 	mkdir -p build_inquisitor	javac -sourcepath source -d build_inquisitor source/SNMPInquisitor.java	jar cvfm SNMPInquisitor.jar manifest/SNMPInquisitor.mf -C build_inquisitor/ .	rm -rf build_inquisitor# Build the SNMP Agent Test application as the SNMPAgentTest.jar fileSNMPAgentTest: 	mkdir -p build_agent_test	javac -sourcepath source -d build_agent_test source/SNMPAgentTest.java	jar cvfm SNMPAgentTest.jar manifest/SNMPAgentTest.mf -C build_agent_test/ .	rm -rf build_agent_test# Build the SNMP Trap Test application as the SNMPTrapTest.jar fileSNMPTrapTest: 	mkdir -p build_trap_test	javac -sourcepath source -d build_trap_test source/SNMPTrapTest.java	jar cvfm SNMPTrapTest.jar manifest/SNMPTrapTest.mf -C build_trap_test/ .	rm -rf build_trap_test# Build the SNMP Package into the snmp.jar fileSNMPPackage: 	mkdir -p build_library	javac -sourcepath source -d build_library source/snmp/*.java	jar cvf snmp.jar -C build_library/ .	rm -rf build_library# Archive the SNMP Package source distribution into the snmp_source.zip fileSNMPDistribution: 	zip -r snmp_source.zip source manifest build.xml Makefile ReadMe ChangeLog

⌨️ 快捷键说明

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