📄 makefile
字号:
VPATH=../bin : ../src : ../lib : ../includebin=../bin/src=../src/lib=../lib/inc=../include/all : server clientclient : client.o client_assist.o tools.o clientlib.o client_assist.h structs.h stddef.h gcc $(lib)client_assist.o $(lib)client.o $(lib)tools.o $(lib)clientlib.o -o $(bin)$@server : server.o tools.o serverlib.o structs.h stddef.h gcc $(lib)server.o $(lib)tools.o $(lib)serverlib.o $(lib)operdb.o -L$$ORACLE_HOME/lib -lclntsh -o $(bin)$@server.o : server.c structs.h stddef.h gcc -g -c $(src)server.c -o $(lib)$@client_assist.o : client_assist.c structs.h stddef.h gcc -g -c $(src)client_assist.c -o $(lib)$@client.o : client.c structs.h stddef.h gcc -g -c $(src)client.c -o $(lib)$@tools.o : tools.c tools.h structs.h stddef.h gcc -g -c $(src)tools.c -o $(lib)$@clientlib.o : clientlib.c clientlib.h structs.h stddef.h gcc -g -c $(src)clientlib.c -o $(lib)$@serverlib.o : serverlib.c serverlib.h operdb.o structs.h stddef.h gcc -g -c $(src)serverlib.c -o $(lib)$@operdb.o : operdb.c operdb.pc operdb.h structs.h stddef.h proc $(src)operdb.pc gcc -g -c $(src)operdb.c -I$ORACLE_HOME/precomp/public -o $(lib)$@
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -