summaryrefslogtreecommitdiff
path: root/src/Makefile
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2005-07-23 22:25:46 +0000
committerBram Moolenaar <Bram@vim.org>2005-07-23 22:25:46 +0000
commit58d9823409c590fe0e4cf3220d38dcad1d6dd68d (patch)
treefcf62865bef797f16e7e83392923fcfbc80e861b /src/Makefile
parentb01585904a5e4a6dc8bc8cc2aaaf7fbca260e344 (diff)
downloadvim-git-58d9823409c590fe0e4cf3220d38dcad1d6dd68d.tar.gz
updated for version 7.0114v7.0114
Diffstat (limited to 'src/Makefile')
-rw-r--r--src/Makefile14
1 files changed, 13 insertions, 1 deletions
diff --git a/src/Makefile b/src/Makefile
index cea05871a..83732a28a 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -1343,6 +1343,7 @@ BASIC_SRC = \
fileio.c \
fold.c \
getchar.c \
+ hardcopy.c \
hashtable.c \
if_cscope.c \
if_xcmdsrv.c \
@@ -1411,6 +1412,7 @@ OBJ = \
objects/fileio.o \
objects/fold.o \
objects/getchar.o \
+ objects/hardcopy.o \
objects/hashtable.o \
$(HANGULIN_OBJ) \
objects/if_cscope.o \
@@ -1468,6 +1470,7 @@ PRO_AUTO = \
fileio.pro \
fold.pro \
getchar.pro \
+ hardcopy.pro \
hashtable.pro \
hangulin.pro \
if_cscope.pro \
@@ -1599,7 +1602,9 @@ xxd/xxd$(EXEEXT): xxd/xxd.c
# Generate the converted .mo files separately, it's no problem if this fails.
languages:
@if test -n "$(MAKEMO)" -a -f $(PODIR)/Makefile; then \
- cd $(PODIR); CC="$(CC)" $(MAKE) prefix=$(DESTDIR)$(prefix); \
+ cd $(PODIR); \
+ CC="$(CC)" $(MAKE) check; \
+ CC="$(CC)" $(MAKE) prefix=$(DESTDIR)$(prefix); \
fi
-@if test -n "$(MAKEMO)" -a -f $(PODIR)/Makefile; then \
cd $(PODIR); CC="$(CC)" $(MAKE) prefix=$(DESTDIR)$(prefix) converted; \
@@ -2285,6 +2290,9 @@ objects/fold.o: fold.c
objects/getchar.o: getchar.c
$(CCC) -o $@ getchar.c
+objects/hardcopy.o: hardcopy.c
+ $(CCC) -o $@ hardcopy.c
+
objects/hashtable.o: hashtable.c
$(CCC) -o $@ hashtable.c
@@ -2637,6 +2645,10 @@ objects/getchar.o: getchar.c vim.h auto/config.h feature.h os_unix.h \
auto/osdef.h ascii.h keymap.h term.h macros.h structs.h regexp.h \
gui.h gui_beval.h proto/gui_beval.pro option.h ex_cmds.h proto.h \
globals.h farsi.h arabic.h
+objects/hardcopy.o: hardcopy.c vim.h auto/config.h feature.h os_unix.h \
+ auto/osdef.h ascii.h keymap.h term.h macros.h structs.h regexp.h \
+ gui.h gui_beval.h proto/gui_beval.pro option.h ex_cmds.h proto.h \
+ globals.h farsi.h arabic.h
objects/hashtable.o: hashtable.c vim.h auto/config.h feature.h os_unix.h \
auto/osdef.h ascii.h keymap.h term.h macros.h structs.h regexp.h \
gui.h gui_beval.h proto/gui_beval.pro option.h ex_cmds.h proto.h \