?? makefile
字號:
## Makefile for example programs#SRCDIR= ../..include ../../Makefile.globalCFLAGS+= -I$(LIBPQDIR)LDFLAGS+= -L$(LIBPQDIR) -lpq ## And where libpq goes, so goes the authentication stuff...#ifdef KRBVERSLDFLAGS+= $(KRBLIBS)CFLAGS+= $(KRBFLAGS)endif# PROGS= testlibpq0 testlibpq1 testlibpq2 testlibpq3 testlibpq4 testloPROGS = testlibpq testlibpq2 testlibpq3 testlibpq4 testlo testlo2all: $(PROGS)$(PROGS): % : %.c $(CC) $(CFLAGS) -o $@ $@.c $(LDFLAGS)clean: rm -f $(PROGS)
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -