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

📄 makefile

📁 操作系统SunOS 4.1.3版本的源码
💻
字号:
## @(#)Makefile 1.1 92/07/30 SMI## NOTE WELL:## When files are added to this makefile, they must generally be added# to ../Makefile.obj, too.#DESTDIR =INSDIR = $(DESTDIR)/usr/demo/SOUND/multimedia# source files in this directoryHDRS = libaudio.h audio_device.h audio_errno.h audio_filehdr.h audio_hdr.h \	archdep.h ulaw2linear.h# 'make install' targetsINSFILES = $(INSDIR) $(HDRS:%=$(INSDIR)/%)# default rule only needs to ensure that the headers are pulled out from SCCSall default: $(HDRS)# install header filesinstall install_h: $(INSFILES)# rules for installing files from this directoryOWNER = binINSTALL = install -o $(OWNER)$(INSDIR)/%: %	$(INSTALL) -m 644 $< $(INSDIR)# rule to ensure target directories exist$(INSDIR):	?$(INSTALL) -d -m 755 $@clean:

⌨️ 快捷键说明

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