?? makefile
字號:
# 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 details# The usb serial headersINCLUDEUSBSER := $(shell echo "/usr/src/linux-`uname -r`/drivers/usb/serial/")TOPDIR := $(shell pwd)#TOPDIR = .include $(TOPDIR)/Rules.makeCFLAGS += -I$(INCLUDEUSBSER) -OOBJS = ftdi.oall: $(OBJS)ftdi.o: ftdi_sio.o $(LD) -r $^ -o $@install: install -d $(INSTALLDIR) install -c $(OBJS) $(INSTALLDIR)clean: rm -f *.o *~ core
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -