Mercurial > vim
view src/Make_morph.mak @ 18010:cf8e0c7e0cb9 v8.1.2001
patch 8.1.2001: some source files are too big
Commit: https://github.com/vim/vim/commit/261f346f8154c0ec7094a4a211c653c74e9f7c2e
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Sep 7 15:45:32 2019 +0200
patch 8.1.2001: some source files are too big
Problem: Some source files are too big.
Solution: Move buffer and window related functions to evalbuffer.c and
evalwindow.c. (Yegappan Lakshmanan, closes #4898)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sat, 07 Sep 2019 16:00:03 +0200 |
parents | 46f95606b9ec |
children | df5778d73320 |
line wrap: on
line source
# # Makefile for VIM, using MorphOS SDK (gcc 2.95.3) # CFLAGS = -c \ -pipe \ -O2 \ -Wall \ \ -DNO_ARP \ -DUSE_TMPNAM \ \ -I proto \ \ -noixemul PRG = Vim LIBS = -noixemul -s CC = gcc LD = gcc OBJDUMP = objdump RM = rm .c.o: ${CC} ${CFLAGS} $< -o $@ SRC = arabic.c \ arglist.c \ autocmd.c \ blowfish.c \ buffer.c \ change.c \ charset.c \ cmdexpand.c \ cmdhist.c \ crypt.c \ crypt_zip.c \ debugger.c \ dict.c \ diff.c \ digraph.c \ edit.c \ eval.c \ evalbuffer.c \ evalfunc.c \ evalvars.c \ evalwindow.c \ ex_cmds.c \ ex_cmds2.c \ ex_docmd.c \ ex_eval.c \ ex_getln.c \ fileio.c \ filepath.c \ findfile.c \ fold.c \ getchar.c \ hardcopy.c \ hashtab.c \ highlight.c \ indent.c \ insexpand.c \ json.c \ list.c \ main.c \ map.c \ mark.c \ mbyte.c \ memfile.c \ memline.c \ menu.c \ message.c \ misc1.c \ misc2.c \ move.c \ normal.c \ ops.c \ option.c \ os_amiga.c \ popupmnu.c \ profiler.c \ quickfix.c \ regexp.c \ scriptfile.c \ screen.c \ search.c \ session.c \ sha256.c \ sign.c \ spell.c \ spellfile.c \ syntax.c \ tag.c \ term.c \ testing.c \ textprop.c \ ui.c \ undo.c \ usercmd.c \ userfunc.c \ version.c \ viminfo.c \ window.c \ OBJ = $(SRC:.c=.o) $(PRG): $(OBJ) ${LD} -o $(PRG) $(OBJ) $(LIBS) dump: $(PRG) $(OBJDUMP) --reloc --disassemble-all $(PRG) > $(PRG).s clean: $(RM) -fv $(OBJ) $(PRG) $(PRG).s