📄 makefile
字号:
## File: Linux serproxy makefile## (C)1999 Stefano Busti#VERSION = `cat VERSION`SRCS = \ main.c sio.c sock.c thread.c vlist.c cfglib.c config.c string.c \ pipe.c error.cOBJS = \ main.o sio.o sock.o thread.o vlist.o cfglib.o config.o string.o \ pipe.c error.cCC = gccifdef DEBUGCFLAGS = -Wall -g -D__UNIX__ -DDEBUGelseCFLAGS = -Wall -O2 -fomit-frame-pointer -D__UNIX__endififdef USE_EFLIBS= -lpthread -lefenceelseLIBS= -lpthreadendif# Build the programserproxy: $(SRCS) $(OBJS) $(CC) $(CFLAGS) -o serproxy $(OBJS) $(LDFLAGS) $(LIBS)install: serproxy cp -f serproxy /usr/local/binclean: rm -f *.o *~realclean: rm -f *.o *~ serproxy *.gz *.zipdep: makedepend -Y -- $(CFLAGS) -- $(SRCS) 2&>/dev/null# DO NOT DELETEmain.o: sio.h sock.h pipe.h thread.h vlist.h cfglib.h config.h error.hsio.o: sio.hsock.o: sock.hthread.o: thread.hvlist.o: vlist.hcfglib.o: cfglib.hconfig.o: config.h cfglib.h string.hstring.o: string.hpipe.o: pipe.h sio.h sock.h thread.herror.o: error.h
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -