On 18/01/13 23:28, Ken Takata wrote:
Hi,
gui_w32.c depends on gui_w48.c, but the dependency in Make_cyg.mak
and Make_ming.mak is not correct. If I edit only gui_w48.c,
Vim is not built.
Attached patch fix this.
Thanks,
Ken Takata
I don't understand what your patch is doing, other than replacing three
lines by themselves.
Best regards,
Tony.
--
Finagle's Third Law:
In any collection of data, the figure most obviously correct,
beyond all need of checking, is the mistake
Corollaries:
(1) Nobody whom you ask for help will see it.
(2) The first person who stops by, whose advice you really
don't want to hear, will see it immediately.
--
You received this message from the "vim_dev" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php
# HG changeset patch
# Parent 684b880ab29147545cf546e38a291e080c7aee21
diff --git a/src/Make_cyg.mak b/src/Make_cyg.mak
--- a/src/Make_cyg.mak
+++ b/src/Make_cyg.mak
@@ -607,6 +607,9 @@
$(OUTDIR)/ex_eval.o: ex_eval.c $(INCL) ex_cmds.h
$(CC) -c $(CFLAGS) ex_eval.c -o $(OUTDIR)/ex_eval.o
+$(OUTDIR)/gui_w32.o: gui_w32.c gui_w48.c $(INCL)
+ $(CC) -c $(CFLAGS) gui_w32.c -o $(OUTDIR)/gui_w32.o
+
$(OUTDIR)/if_cscope.o: if_cscope.c $(INCL) if_cscope.h
$(CC) -c $(CFLAGS) if_cscope.c -o $(OUTDIR)/if_cscope.o
diff --git a/src/Make_ming.mak b/src/Make_ming.mak
--- a/src/Make_ming.mak
+++ b/src/Make_ming.mak
@@ -731,6 +731,9 @@
$(OUTDIR)/ex_eval.o: ex_eval.c $(INCL) ex_cmds.h
$(CC) -c $(CFLAGS) ex_eval.c -o $(OUTDIR)/ex_eval.o
+$(OUTDIR)/gui_w32.o: gui_w32.c gui_w48.c $(INCL)
+ $(CC) -c $(CFLAGS) gui_w32.c -o $(OUTDIR)/gui_w32.o
+
$(OUTDIR)/if_cscope.o: if_cscope.c $(INCL) if_cscope.h
$(CC) -c $(CFLAGS) if_cscope.c -o $(OUTDIR)/if_cscope.o