makefile
来自「linux程序设计第二版」· 代码 · 共 26 行
TXT
26 行
all: applicationINCLUDE=/usr/include/gdbmLIBS=-lgdbm# On some distributoions you may need to change the above line to include# the compatability library, as shown below.# LIBS=-lgdbm -lgdbm_compatCFLAGS=app_ui.o: app_ui.c cd_data.h gcc $(CFLAGS) -c app_ui.caccess.o: access.c cd_data.h gcc $(CFLAGS) -I$(INCLUDE) -c access.capplication: app_ui.o access.o gcc $(CFLAGS) -o application app_ui.o access.o $(LIBS)clean: rm -f application *.onodbmfiles: rm -f *.dir *.pag
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?