summaryrefslogtreecommitdiffstats
path: root/src/Make_dice.mak
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-04-27 13:04:13 +0200
committerBram Moolenaar <Bram@vim.org>2019-04-27 13:04:13 +0200
commitac9fb18020d7e8bf16d02d45fbb02cf47328aaf7 (patch)
tree439cf73bcd9696032bfe85cd170b0623a9dffa9a /src/Make_dice.mak
parent5431589d25e73892fcf7ad1eaca53f742c1c9303 (diff)
patch 8.1.1210: support for user commands is spread outv8.1.1210
Problem: Support for user commands is spread out. No good reason to make user commands optional. Solution: Move user command support to usercmd.c. Always enable the user_commands feature.
Diffstat (limited to 'src/Make_dice.mak')
-rw-r--r--src/Make_dice.mak4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/Make_dice.mak b/src/Make_dice.mak
index 93e960a8db..89fa589459 100644
--- a/src/Make_dice.mak
+++ b/src/Make_dice.mak
@@ -83,6 +83,7 @@ SRC = \
term.c \
ui.c \
undo.c \
+ usercmd.c \
userfunc.c \
window.c \
version.c
@@ -144,6 +145,7 @@ OBJ = o/arabic.o \
o/term.o \
o/ui.o \
o/undo.o \
+ o/usercmd.o \
o/userfunc.o \
o/window.o \
$(TERMLIB)
@@ -288,6 +290,8 @@ o/ui.o: ui.c $(SYMS)
o/undo.o: undo.c $(SYMS)
+o/usercmd.o: usercmd.c $(SYMS)
+
o/userfunc.o: userfunc.c $(SYMS)
o/window.o: window.c $(SYMS)