comparison src/Make_cyg_ming.mak @ 14925:8b1b3228c410 v8.1.0474

patch 8.1.0474: directory where if_perl.c is written is inconsistent commit https://github.com/vim/vim/commit/a16bc5450359294f9d8585da9f74e5082108b7fb Author: Bram Moolenaar <Bram@vim.org> Date: Sun Oct 14 16:25:10 2018 +0200 patch 8.1.0474: directory where if_perl.c is written is inconsistent Problem: Directory where if_perl.c is written is inconsistent. Solution: use auto/if_perl.c for MS-Windows. (Ken Takata, closes https://github.com/vim/vim/issues/3540)
author Bram Moolenaar <Bram@vim.org>
date Sun, 14 Oct 2018 16:30:06 +0200
parents 8ff32a34f25e
children 665d9c0fea86
comparison
equal deleted inserted replaced
14924:23367c9dd4d1 14925:8b1b3228c410
983 -rmdir $(OUTDIR) 983 -rmdir $(OUTDIR)
984 -$(DEL) *.exe 984 -$(DEL) *.exe
985 -$(DEL) pathdef.c 985 -$(DEL) pathdef.c
986 ifdef PERL 986 ifdef PERL
987 -$(DEL) if_perl.c 987 -$(DEL) if_perl.c
988 -$(DEL) auto$(DIRSLASH)if_perl.c
988 endif 989 endif
989 ifdef MZSCHEME 990 ifdef MZSCHEME
990 -$(DEL) mzscheme_base.c 991 -$(DEL) mzscheme_base.c
991 endif 992 endif
992 $(MAKE) -C GvimExt -f Make_ming.mak clean 993 $(MAKE) -C GvimExt -f Make_ming.mak clean
1041 1042
1042 # Remove -D__IID_DEFINED__ for newer versions of the w32api 1043 # Remove -D__IID_DEFINED__ for newer versions of the w32api
1043 $(OUTDIR)/if_ole.o: if_ole.cpp $(INCL) if_ole.h 1044 $(OUTDIR)/if_ole.o: if_ole.cpp $(INCL) if_ole.h
1044 $(CC) $(CFLAGS) $(CXXFLAGS) -c -o $(OUTDIR)/if_ole.o if_ole.cpp 1045 $(CC) $(CFLAGS) $(CXXFLAGS) -c -o $(OUTDIR)/if_ole.o if_ole.cpp
1045 1046
1046 if_perl.c: if_perl.xs typemap 1047 auto/if_perl.c: if_perl.xs typemap
1047 $(XSUBPP) -prototypes -typemap \ 1048 $(XSUBPP) -prototypes -typemap \
1048 $(PERLTYPEMAP) if_perl.xs -output $@ 1049 $(PERLTYPEMAP) if_perl.xs -output $@
1050
1051 $(OUTDIR)/if_perl.o: auto/if_perl.c $(INCL)
1052 $(CC) -c $(CFLAGS) auto/if_perl.c -o $(OUTDIR)/if_perl.o
1053
1049 1054
1050 $(OUTDIR)/if_ruby.o: if_ruby.c $(INCL) 1055 $(OUTDIR)/if_ruby.o: if_ruby.c $(INCL)
1051 ifeq (16, $(RUBY)) 1056 ifeq (16, $(RUBY))
1052 $(CC) $(CFLAGS) -U_WIN32 -c -o $(OUTDIR)/if_ruby.o if_ruby.c 1057 $(CC) $(CFLAGS) -U_WIN32 -c -o $(OUTDIR)/if_ruby.o if_ruby.c
1053 endif 1058 endif