📄 makefile.customer
字号:
## @(#)Makefile.customer 1.1 92/07/30 Copyr 1986 Sun Micro## Makefile for the example programs in the SunView Programmer's# Guide and SunView System Programme's Guide.# Some of the programs have been modified since the manuals# were printed.# This is the order they appear in the Example Programs chapter,# with the addition of the selection demo program from the SunView# System Programmer's GuideDESTDIR=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.c OBJS= $(CFILES:%.c=%.o)BINS= filer image_browser_2 resize_demo coloredit animatecolor \ tty_io font_menu dctool typein bounce spheres seln_demo CC= cc## If you want to compile for debugging, change "-O" to "-g"#CFLAGS= -O# if you want special to pass special loader options to ld, set# LDFLAGS= ...#LIBS = -lsuntool -lsunwindow -lpixrectall: ${BINS}filer: filer.o ${CC} ${CFLAGS} ${LDFLAGS} -o filer filer.o ${LIBS}image_browser_2: image_browser_2.o ${CC} ${CFLAGS} ${LDFLAGS} -o image_browser_2 image_browser_2.o ${LIBS}resize_demo: resize_demo.o ${CC} ${CFLAGS} ${LDFLAGS} -o resize_demo resize_demo.o ${LIBS}coloredit: coloredit.o ${CC} ${CFLAGS} ${LDFLAGS} -o coloredit coloredit.o ${LIBS}animatecolor: animatecolor.o ${CC} ${CFLAGS} ${LDFLAGS} -o animatecolor animatecolor.o ${LIBS}tty_io: tty_io.o ${CC} ${CFLAGS} ${LDFLAGS} -o tty_io tty_io.o ${LIBS}font_menu: font_menu.o ${CC} ${CFLAGS} ${LDFLAGS} -o font_menu font_menu.o ${LIBS}dctool: dctool.o ${CC} ${CFLAGS} ${LDFLAGS} -o dctool dctool.o ${LIBS}typein: typein.o ${CC} ${CFLAGS} ${LDFLAGS} -o typein typein.o ${LIBS}bounce: bounce.o ${CC} ${CFLAGS} ${LDFLAGS} -o bounce bounce.o ${LIBS}spheres.o: spheres.c spheres.icon ${CC} -c ${CFLAGS} spheres.cspheres: spheres.o spheres.icon ${CC} ${CFLAGS} ${LDFLAGS} -o spheres spheres.o ${LIBS}seln_demo: seln_demo.o ${CC} ${CFLAGS} ${LDFLAGS} -o seln_demo seln_demo.o ${LIBS}clean: rm -f ${OBJS} ${BINS}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -