📄 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 + -