1
0
forked from aniani/vim

patch 7.4.1983

Problem:    farsi.c and arabic.c are included in a strange way.
Solution:   Build them like other files.
This commit is contained in:
Bram Moolenaar
2016-07-02 20:27:50 +02:00
parent 951fa1819a
commit 75464dc434
18 changed files with 123 additions and 44 deletions

View File

@@ -89,6 +89,7 @@ CFLAGS4 = $(DEFINES) DATAMEMORY=$(MEMORYTYPE)
PROPT = DEF=PROTO GPROTO GPPARM MAXIMUMERRORS=999 GENPROTOSTATICS GENPROTOPARAMETERS
SRC = \
arabic.c \
blowfish.c \
buffer.c \
charset.c \
@@ -103,6 +104,7 @@ SRC = \
ex_docmd.c \
ex_eval.c \
ex_getln.c \
farsi.c \
fileio.c \
fold.c \
getchar.c \
@@ -139,6 +141,7 @@ SRC = \
version.c
OBJ = \
arabic.o \
blowfish.o \
buffer.o \
charset.o \
@@ -153,6 +156,7 @@ OBJ = \
ex_docmd.o \
ex_eval.o \
ex_getln.o \
farsi.o \
fileio.o \
fold.o \
getchar.o \
@@ -189,6 +193,7 @@ OBJ = \
$(TERMLIB)
PRO = \
proto/arabic.pro \
proto/blowfish.pro \
proto/buffer.pro \
proto/charset.pro \
@@ -203,6 +208,7 @@ PRO = \
proto/ex_docmd.pro \
proto/ex_eval.pro \
proto/ex_getln.pro \
proto/farsi.pro \
proto/fileio.pro \
proto/fold.pro \
proto/getchar.pro \
@@ -293,6 +299,8 @@ $(PRO): $(GST) vim.h
$(CC) $(CFLAGS) GPFILE=proto/$*.pro $(PROPT) $*.c
# dependencies
arabic.o: arabic.c
proto/arabic.pro: arabic.c
blowfish.o: blowfish.c
proto/blowfish.pro: blowfish.c
buffer.o: buffer.c
@@ -321,6 +329,8 @@ ex_eval.o: ex_eval.c ex_cmds.h
proto/ex_eval.pro: ex_eval.c ex_cmds.h
ex_getln.o: ex_getln.c
proto/ex_getln.pro: ex_getln.c
farsi.o: farsi.c
proto/farsi.pro: farsi.c
fileio.o: fileio.c
proto/fileio.pro: fileio.c
fold.o: fold.c