📄 makefile
字号:
## Makefile for example programs#SRCDIR= ../..include ../../Makefile.global## And where libpq goes, so goes the authentication stuff...#ifdef KRBVERSLDFLAGS+= $(KRBLIBS)CFLAGS+= $(KRBFLAGS)endifPROGS = test-pgsql-locale test-ctypeDIRS = koi8-r ISO8859-7 koi8-to-win1251all: $(PROGS)$(PROGS): % : %.c $(CC) $(CFLAGS) -o $@ $@.c $(LDFLAGS)clean: rm -f $(PROGS) *.out for d in $(DIRS); do \ cd $$d; \ $(MAKE) clean; \ cd ..; \ donetest-%: all @cd `echo $@ | sed 's/^test-//'` && $(MAKE) test
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -