📄 makefile
字号:
# This is the Makefile for the FPS200 Veridicom's Fingerprint Sensor (non-# official)# The driver was written by Cristiano Rodrigues de Carvalho## This Makefile is based on the Makefile for the skull driver that is part# of the work of Alessandro Rubini and Jonathan Corbet.## 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.makeCFLAGS += -I.. -Oifdef DEBUGCFLAGS += -DDEBUGendififdef INTERRUPTCFLAGS += -DINTERRUPT_HANDLINGendififdef LOCKDEVICECFLAGS += -DLOCKDEVICEendififdef ENABLEDIRECTACCESSCFLAGS += -DENABLEDIRECTACCESSendifOBJS = fps200.o Makefileall: $(OBJS) capturefps200.o: fps200usb.o $(LD) -r $^ -o $@capture: capture.c fps200ctl.h gcc capture.c -o captureinstall: install -d $(INSTALLDIR) install -c $(OBJS) $(INSTALLDIR)clean: rm -f *.o *~ *.bmp *.raw *.pgm core capture
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -