?? makefile
字號:
# 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 + -