diff src/Makefile @ 16632:30de89c1d090 v8.1.1318

patch 8.1.1318: code for text changes is in a "misc" file commit https://github.com/vim/vim/commit/ec28d1516eb8bb5dcaa42de145953a6d49aebb6f Author: Bram Moolenaar <Bram@vim.org> Date: Sat May 11 18:36:34 2019 +0200 patch 8.1.1318: code for text changes is in a "misc" file Problem: Code for text changes is in a "misc" file. Solution: Move the code to change.c.
author Bram Moolenaar <Bram@vim.org>
date Sat, 11 May 2019 18:45:06 +0200
parents 6d9461653dc5
children f776ce5d4ed8
line wrap: on
line diff
--- a/src/Makefile
+++ b/src/Makefile
@@ -1576,6 +1576,7 @@ BASIC_SRC = \
 	blob.c \
 	blowfish.c \
 	buffer.c \
+	change.c \
 	charset.c \
 	crypt.c \
 	crypt_zip.c \
@@ -1691,6 +1692,7 @@ OBJ_COMMON = \
 	objects/autocmd.o \
 	objects/beval.o \
 	objects/buffer.o \
+	objects/change.o \
 	objects/blob.o \
 	objects/blowfish.o \
 	objects/crypt.o \
@@ -1821,6 +1823,7 @@ PRO_AUTO = \
 	autocmd.pro \
 	blowfish.pro \
 	buffer.pro \
+	change.pro \
 	charset.pro \
 	crypt.pro \
 	crypt_zip.pro \
@@ -2965,6 +2968,9 @@ objects/blowfish.o: blowfish.c
 objects/buffer.o: buffer.c
 	$(CCC) -o $@ buffer.c
 
+objects/change.o: change.c
+	$(CCC) -o $@ change.c
+
 objects/charset.o: charset.c
 	$(CCC) -o $@ charset.c
 
@@ -3430,6 +3436,10 @@ objects/buffer.o: buffer.c vim.h protode
  auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
  proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
  proto.h globals.h version.h
+objects/change.o: change.c vim.h protodef.h auto/config.h feature.h os_unix.h \
+ auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
+ proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \
+ proto.h globals.h version.h
 objects/charset.o: charset.c vim.h protodef.h auto/config.h feature.h os_unix.h \
  auto/osdef.h ascii.h keymap.h term.h macros.h option.h beval.h \
  proto/gui_beval.pro structs.h regexp.h gui.h alloc.h ex_cmds.h spell.h \