📄 makefile
字号:
# This makefile builds the OpenVPN win32 service# wrapper using the mingw environment.## service.c and service.h should be generated by# applying service.patch to the Platform# SDK service sample.EXE = openvpnserv.exeHEADERS = service.hOBJS = openvpnserv.o service.oINCLUDE_DIRS =CC = gcc -g -O2 -Wall -Wno-unused-function -Wno-unused-variable -mno-cygwinall : ${OBJS} ${CC} -o ${EXE} ${OBJS}clean : rm -f ${OBJS} ${EXE}%.o : %.c ${HEADERS} ${CC} ${INCLUDE_DIRS} -c $< -o $@
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -