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

📄 makefile

📁 Minix比较全的源码
💻
字号:
# Makefile for the ES1371 sounddriver (SB16)# directoriesu = /usri = $u/includes = $i/sysm = $i/minixb = $i/ibmgen_drv_dir = ../../gen_drivers/cyclic_dma# programs, flags, etc.CC =	exec ccCFLAGS = -I$iLDFLAGS = -iLIBS = -lsys -lsysutil # build local binaryall:	es1370es1370:	es1370.o ak4531.o audio_fw.o pci_helper.o	$(CC) -o $@ $(LDFLAGS) es1370.o ak4531.o audio_fw.o pci_helper.o $(LIBS)audio_fw.o: ../framework/audio_fw.c ../framework/audio_fw.h	$(CC) -c ../framework/audio_fw.c	install: /usr/sbin/es1370/usr/sbin/es1370:	es1370	install -o root -S 1024k -c $? $@# clean up local filesclean:	rm -f *.o *.bak core es1370depend: 	mkdep "$(CC) -E $(CPPFLAGS)" *.c > .depend# Include generated dependencies.include .depend

⌨️ 快捷键说明

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