diff options
Diffstat (limited to 'src/Makefile')
-rw-r--r-- | src/Makefile | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/Makefile b/src/Makefile index c89fdb135..0bfc92d94 100644 --- a/src/Makefile +++ b/src/Makefile @@ -1593,6 +1593,8 @@ BASIC_SRC = \ dict.c \ diff.c \ digraph.c \ + drawline.c \ + drawscreen.c \ edit.c \ eval.c \ evalbuffer.c \ @@ -1727,6 +1729,8 @@ OBJ_COMMON = \ objects/dict.o \ objects/diff.o \ objects/digraph.o \ + objects/drawline.o \ + objects/drawscreen.o \ objects/edit.o \ objects/eval.o \ objects/evalbuffer.o \ @@ -1874,6 +1878,8 @@ PRO_AUTO = \ dict.pro \ diff.pro \ digraph.pro \ + drawline.pro \ + drawscreen.pro \ edit.pro \ eval.pro \ evalbuffer.pro \ @@ -3083,6 +3089,12 @@ objects/diff.o: diff.c $(XDIFF_INCL) objects/digraph.o: digraph.c $(CCC) -o $@ digraph.c +objects/drawline.o: drawline.c + $(CCC) -o $@ drawline.c + +objects/drawscreen.o: drawscreen.c + $(CCC) -o $@ drawscreen.c + objects/edit.o: edit.c $(CCC) -o $@ edit.c @@ -3613,6 +3625,14 @@ objects/digraph.o: digraph.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 +objects/drawline.o: drawline.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 +objects/drawscreen.o: drawscreen.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 objects/edit.o: edit.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 \ |