makefile

来自「OpenVPN is a robust and highly flexible 」· 代码 · 共 26 行

TXT
26
字号
# 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 + =
减小字号Ctrl + -
显示快捷键?