📄 makefile.dos
字号:
############################################################################ This program is Copyright (C) 1986, 1987, 1988 by Jonathan Payne. JOVE ## is provided to you without charge, and with no warranty. You may give ## away copies of JOVE, including sources, provided that this notice is ## included in all the files. ############################################################################MEM = L # M for medium or L for largeDEB = -Gs -Ot # use -Zi and MEM = M for debugging## define LINT_ARGS to use function prototypes#CFLAGS = -A$(MEM) -J -Zp $(DEB) -DIBMPCLIB = M:\LIB## linker flags: for debugging use /NOE/NOI/F/B/PAC/CO/STACK:0x2000#LDFLAGS = /NOE/NOI/MAP/F/B/E/PAC/STACK:0x2000## set VPATH as below if you have sources in SRC#SRC = .# VPATH = .;.. # should read .;$(SRC) - but doesn't workOBJECTS = keys.obj funcdefs.obj abbrev.obj ask.obj buf.obj c.obj \ case.obj ctype.obj delete.obj extend.obj argcount.obj \ insert.obj io.obj jove.obj macros.obj marks.obj misc.obj move.obj \ paragrap.obj proc.obj re.obj re1.obj scandir.obj \ list.obj keymaps.obj tune.obj util.obj vars.obj wind.obj \ fmt.obj disp.obj term.obj version.obj fp.obj screen.obj getch.obj \ pcscr.obj HEADERS = ctype.h io.h jove.h re.h list.h temp.h termcap.h tune.h externs.hjove.exe: $(OBJECTS) $(HEADERS) link $(OBJECTS) $(LIB)\setargv,xjove $(LDFLAGS);$(OBJECTS): $(HEADERS)setmaps.exe: setmaps.obj funcdefs.c cl setmaps.objsetmaps.obj: funcdefs.c keys.txt cl $(CFLAGS) $(SRC)\setmaps.ckeys.c: setmaps.exe keys.txt setmaps < keys.txt > keys.ckeys.obj: keys.c jove.h $(CC) $(CFLAGS) -I$(SRC) -c keys.c# to avoid accidental loss under unixtune.c: tune.dos copy tune.dos tune.ctune.obj: tune.c $(CC) $(CFLAGS) -I$(SRC) -c tune.cclean: -rm *.obj setmaps.exe keys.c *.bak *.map
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -