📄 makefile
字号:
## @(#)Makefile 1.1 92/07/30 Copyr 1986 Sun Micro# # Internal Makefile -- does not get sent to customer.#CFILES= filer.c image_browser_2.c resize_demo.c \ coloredit.c animatecolor.c tty_io.c font_menu.c \ dctool.c typein.c bounce.c spheres.c \ seln_demo.c confirm.cOBJS= $(CFILES:%.c=%.o)BINS_UNIQUE= spheresBINS= filer image_browser_2 resize_demo coloredit animatecolor \ tty_io font_menu dctool typein bounce seln_demo canvas_input \ addnewtest canvas_repaint image_browser_1 loopback \ menugenproc showcolor simple_panel.KEEP_STATE:include ../../Makefile.masterall: ${BINS} ${BINS_UNIQUE}${BINS}: $$@.c ${CC} ${LDFLAGS} ${CFLAGS_NOT_ROI_DATA} $@.c -o $@ ${LIBS} spheres: spheres.icon spheres.c ${CC} ${LDFLAGS} ${CFLAGS_NOT_ROI_DATA} -o spheres spheres.c ${LIBS}fast_install:install: install_sourcesinstall_sources: Makefile.customer spheres.icon ${CFILES} -install -d -m 755 ${DESTDIR}${SRCDIR}/examples -install -m 644 Makefile.customer ${DESTDIR}${SRCDIR}/examples/Makefile -@for i in ${CFILES} spheres.icon; do \ echo "installing $$i"; \ if [ -f ${DESTDIR}${SRCDIR}/examples/$$i ]; then \ rm -f ${DESTDIR}${SRCDIR}/examples/$$i; \ fi; \ install -m 444 $$i ${DESTDIR}${SRCDIR}/examples/$$i; \ doneclean: rm -f ${OBJS} ${BINS} ${BINS_UNIQUE}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -