makefile
来自「并口驱动程序」· 代码 · 共 29 行
TXT
29 行
# Comment/uncomment the following line to enable/disable debugging#DEBUG = y# This Makefile has been simplified as much as possible, by putting all# generic material, independent of this specific directory, into# ../Rules.make. Read that file for detailsTOPDIR := $(shell cd ..; pwd)include $(TOPDIR)/Rules.makeifeq ($(DEBUG),y) DEBFLAGS = -O -g -DSHORT_DEBUGelse DEBFLAGS = -O2endifCFLAGS += $(DEBFLAGS) -I..OBJS = shortprint.oall: $(OBJS)install: install -d $(INSTALLDIR) install -c shortprint.o $(INSTALLDIR)clean: rm -f *.o *~ core
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?