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

📄 makefile

📁 操作系统SunOS 4.1.3版本的源码
💻
字号:
## @(#)Makefile 1.1 92/07/30 SMI## CFILES_USER are C files distributed to the userCFILES_USER= canvas_demo.c cursor_demo.c framedemo.c \	jumpdemo.c spheresdemo.c bouncedemo.c	# Moved to the attic: selections.c mousetool.c # CFILES_NO_DISTRIBUTE are non-distributed C filesCFILES_NO_DISTRIBUTE=CMDS=			cursor_demo \			framedemo \			spheresdemo \			canvas_demo \			jumpdemo \			bouncedemoHDRSALL=SRCSALL=$(CFILESALL) $(HDRSALL) MakefileCFILESALL=  ${CFILES_USER} ${CFILES_NO_DISTRIBUTE}MERGE_GPROFFILES= canvas_demo.pg cursor_demo.pg \	jumpdemo.pg spheresdemo.pg bouncedemo.pg framedemo.pg.KEEP_STATE:all: ${CMDS} ${HDRSALL}include ../../Makefile.master.c.o:	${CC} $(CFLAGS_NOT_ROI_DATA) -c $<${CMDS}: $$@.c	${CC} ${LDFLAGS} ${CFLAGS_NOT_ROI_DATA} -DSTANDALONE $@.c -o $@ ${LIBS} gprof:: ${MERGE_GPROFFILES}	${MAKE} ${MFLAGS} ${COMMONFLAGS} gproflint:: 	${MAKE} ${MFLAGS} ${COMMONFLAGS} lintfast_install: install_demos install: install_demos install_sourcesinstall_demos:	-for i in ${CMDS}; do \		rm ${DESTDIR}/usr/demo/sunview1/$$i; \		install -m 755 $$i ${DESTDIR}/usr/demo/sunview1/$$i; \	doneinstall_sources: ${CFILES_USER} ${HDRSALL}	-for i in ${CFILES_USER} ${HDRSALL} ; do \		install -m 644 $$i ${DESTDIR}${SRCDIR}; \	doneclean:	rm -f ${CMDS} *.o *% coretags:	$(CFILESALL)	${CTAGS} $(CFILESALL);print:	$(SRCSALL)	lpr -p -Pimagen $(SRCSALL)

⌨️ 快捷键说明

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