makefile
来自「小程序,但是有点用出处的.进攻参考.请多多提意见.」· 代码 · 共 49 行
TXT
49 行
# 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 + =
减小字号Ctrl + -
显示快捷键?