comparison src/Make_ming.mak @ 4724:450e13fe1621 v7.3.1109

updated for version 7.3.1109 Problem: Building on MS-Windows doesn't see changes in if_py_both.h. Solution: Add a dependency. (Ken Takata)
author Bram Moolenaar <bram@vim.org>
date Mon, 03 Jun 2013 20:12:51 +0200
parents ccecb03e5e8b
children afbc9dd67cea
comparison
equal deleted inserted replaced
4723:116e5a85ee37 4724:450e13fe1621
719 ########################################################################### 719 ###########################################################################
720 INCL = vim.h feature.h os_win32.h os_dos.h ascii.h keymap.h term.h macros.h \ 720 INCL = vim.h feature.h os_win32.h os_dos.h ascii.h keymap.h term.h macros.h \
721 structs.h regexp.h option.h ex_cmds.h proto.h globals.h farsi.h \ 721 structs.h regexp.h option.h ex_cmds.h proto.h globals.h farsi.h \
722 gui.h 722 gui.h
723 723
724 $(OUTDIR)/if_python.o : if_python.c $(INCL) 724 $(OUTDIR)/if_python.o : if_python.c if_py_both.h $(INCL)
725 $(CC) -c $(CFLAGS) $(PYTHONINC) -DDYNAMIC_PYTHON_DLL=\"python$(PYTHON_VER).dll\" $< -o $@ 725 $(CC) -c $(CFLAGS) $(PYTHONINC) -DDYNAMIC_PYTHON_DLL=\"python$(PYTHON_VER).dll\" $< -o $@
726 726
727 $(OUTDIR)/if_python3.o : if_python3.c $(INCL) 727 $(OUTDIR)/if_python3.o : if_python3.c if_py_both.h $(INCL)
728 $(CC) -c $(CFLAGS) $(PYTHON3INC) -DDYNAMIC_PYTHON3_DLL=\"PYTHON$(PYTHON3_VER).dll\" $< -o $@ 728 $(CC) -c $(CFLAGS) $(PYTHON3INC) -DDYNAMIC_PYTHON3_DLL=\"PYTHON$(PYTHON3_VER).dll\" $< -o $@
729 729
730 $(OUTDIR)/%.o : %.c $(INCL) 730 $(OUTDIR)/%.o : %.c $(INCL)
731 $(CC) -c $(CFLAGS) $< -o $@ 731 $(CC) -c $(CFLAGS) $< -o $@
732 732