📄 makefile.pre.3.2
字号:
## Copyright (c) 1987 Regents of the University of California.# All rights reserved.## Redistribution and use in source and binary forms are permitted# provided that the above copyright notice and this paragraph are# duplicated in all such forms and that any documentation,# advertising materials, and other materials related to such# distribution and use acknowledge that the software was developed# by the University of California, Berkeley. The name of the# University may not be used to endorse or promote products derived# from this software without specific prior written permission.# THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR# IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED# WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.## @(#)Makefile 5.4 (Berkeley) 7/9/88#CFLAGS= -O -DUNIX -DUNIX_BSD4_2 -DCURSESLIBC= /lib/libc.aSRCS= curses.c hit.c init.c inventory.c level.c machdep.c main.c \ message.c monster.c move.c object.c pack.c play.c random.c ring.c \ room.c save.c score.c spec_hit.c throw.c trap.c use.c zap.cOBJS= curses.o hit.o init.o inventory.o level.o machdep.o main.o \ message.o monster.o move.o object.o pack.o play.o random.o ring.o \ room.o save.o score.o spec_hit.o throw.o trap.o use.o zap.oall: roguerogue: ${OBJS} ${LIBC} ${CC} ${OBJS} -o $@ -lcurses -ltermlibclean: FRC rm -f ${OBJS} core roguedepend: FRC mkdep ${CFLAGS} ${SRCS}install: FRC install -c -s -m 711 rogue ${DESTROOT}/usr/games/roguelint: FRC lint ${CFLAGS} ${SRCS}tags: FRC ctags ${SRCS}clobber: clean ${SCCS} cleansccsget: ${SCCS} get SCCSsccsinfo: ${SCCS} infoFRC:# DO NOT DELETE THIS LINE -- mkdep uses it.# DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -