⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 makefile

📁 PC/104扩展模块DIAMOND-MM-16-AT驱动程序
💻
字号:
# 
# Makefile for Linux and QNX
#  
# For other operating systems see the build files in these subdirectories.
# Linux and QNX users just type "make" in this directory to build all 
# the demo programs for this board.
#

LIB=-L/usr/local/dscud5 -L/opt/dscud5 -ldscud5 -pthread -lm
INC=-I/usr/local/dscud5 -I/opt/dscud5

DEMOS=\
DSCADAutoCal/DSCADAutoCal \
DSCADSample/DSCADSample \
DSCADSampleInt/DSCADSampleInt \
DSCADScan/DSCADScan \
DSCADScanInt/DSCADScanInt \
DSCDAAutoCal/DSCDAAutoCal \
DSCDAConvert/DSCDAConvert \
DSCDAConvertScan/DSCDAConvertScan \
DSCDAConvertScanInt/DSCDAConvertScanInt \
DSCDIOFunctions/DSCDIOFunctions \
DSCSetUserInt/DSCSetUserInt \
DSCUserInt/DSCUserInt \
MeasureReferences/MeasureReferences

all: $(DEMOS)

clean:
	rm -f $(DEMOS)

$(DEMOS):
	( gcc -o $@ $@.c $(LIB) $(INC) )

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -