diff options
Diffstat (limited to 'src/makefile.w32-in')
| -rw-r--r-- | src/makefile.w32-in | 32 |
1 files changed, 27 insertions, 5 deletions
diff --git a/src/makefile.w32-in b/src/makefile.w32-in index a296f6eb393..93f12900dde 100644 --- a/src/makefile.w32-in +++ b/src/makefile.w32-in | |||
| @@ -1,5 +1,5 @@ | |||
| 1 | # -*- Makefile -*- for GNU Emacs on the Microsoft Windows API. | 1 | # -*- Makefile -*- for GNU Emacs on the Microsoft Windows API. |
| 2 | # Copyright (C) 2000-2012 Free Software Foundation, Inc. | 2 | # Copyright (C) 2000-2013 Free Software Foundation, Inc. |
| 3 | 3 | ||
| 4 | # This file is part of GNU Emacs. | 4 | # This file is part of GNU Emacs. |
| 5 | 5 | ||
| @@ -134,6 +134,7 @@ OBJ2 = $(BLD)/sysdep.$(O) \ | |||
| 134 | $(BLD)/w32menu.$(O) \ | 134 | $(BLD)/w32menu.$(O) \ |
| 135 | $(BLD)/w32reg.$(O) \ | 135 | $(BLD)/w32reg.$(O) \ |
| 136 | $(BLD)/w32font.$(O) \ | 136 | $(BLD)/w32font.$(O) \ |
| 137 | $(BLD)/w32notify.$(O) \ | ||
| 137 | $(BLD)/w32uniscribe.$(O) | 138 | $(BLD)/w32uniscribe.$(O) |
| 138 | 139 | ||
| 139 | LIBS = $(TLIB0) \ | 140 | LIBS = $(TLIB0) \ |
| @@ -209,7 +210,7 @@ GLOBAL_SOURCES = dosfns.c msdos.c \ | |||
| 209 | fontset.c menu.c dbusbind.c \ | 210 | fontset.c menu.c dbusbind.c \ |
| 210 | w32.c w32console.c w32fns.c w32heap.c w32inevt.c cygw32.c \ | 211 | w32.c w32console.c w32fns.c w32heap.c w32inevt.c cygw32.c \ |
| 211 | w32menu.c w32proc.c w32reg.c w32select.c w32term.c w32xfns.c \ | 212 | w32menu.c w32proc.c w32reg.c w32select.c w32term.c w32xfns.c \ |
| 212 | font.c w32font.c w32uniscribe.c \ | 213 | font.c w32font.c w32uniscribe.c w32notify.c \ |
| 213 | dispnew.c frame.c scroll.c xdisp.c window.c bidi.c \ | 214 | dispnew.c frame.c scroll.c xdisp.c window.c bidi.c \ |
| 214 | charset.c coding.c category.c ccl.c character.c chartab.c \ | 215 | charset.c coding.c category.c ccl.c character.c chartab.c \ |
| 215 | cm.c term.c terminal.c xfaces.c \ | 216 | cm.c term.c terminal.c xfaces.c \ |
| @@ -461,6 +462,8 @@ U64_H = $(GNU_LIB)/u64.h \ | |||
| 461 | $(NT_INC)/stdint.h | 462 | $(NT_INC)/stdint.h |
| 462 | SHA512_H = $(GNU_LIB)/sha512.h \ | 463 | SHA512_H = $(GNU_LIB)/sha512.h \ |
| 463 | $(U64_H) | 464 | $(U64_H) |
| 465 | SIG2STR_H = $(GNU_LIB)/sig2str.h \ | ||
| 466 | $(GNU_LIB)/intprops.h | ||
| 464 | SOCKET_H = $(NT_INC)/sys/socket.h \ | 467 | SOCKET_H = $(NT_INC)/sys/socket.h \ |
| 465 | $(SRC)/w32.h | 468 | $(SRC)/w32.h |
| 466 | STAT_TIME_H = $(GNU_LIB)/stat-time.h \ | 469 | STAT_TIME_H = $(GNU_LIB)/stat-time.h \ |
| @@ -471,6 +474,7 @@ SYSTTY_H = $(SRC)/systty.h \ | |||
| 471 | $(NT_INC)/sys/ioctl.h \ | 474 | $(NT_INC)/sys/ioctl.h \ |
| 472 | $(NT_INC)/unistd.h | 475 | $(NT_INC)/unistd.h |
| 473 | SYSWAIT_H = $(SRC)/syswait.h \ | 476 | SYSWAIT_H = $(SRC)/syswait.h \ |
| 477 | $(NT_INC)/stdbool.h \ | ||
| 474 | $(NT_INC)/sys/wait.h | 478 | $(NT_INC)/sys/wait.h |
| 475 | TERMHOOKS_H = $(SRC)/termhooks.h \ | 479 | TERMHOOKS_H = $(SRC)/termhooks.h \ |
| 476 | $(SYSTIME_H) | 480 | $(SYSTIME_H) |
| @@ -786,6 +790,7 @@ $(BLD)/editfns.$(O) : \ | |||
| 786 | $(CODING_H) \ | 790 | $(CODING_H) \ |
| 787 | $(CONFIG_H) \ | 791 | $(CONFIG_H) \ |
| 788 | $(FRAME_H) \ | 792 | $(FRAME_H) \ |
| 793 | $(GRP_H) \ | ||
| 789 | $(INTERVALS_H) \ | 794 | $(INTERVALS_H) \ |
| 790 | $(LISP_H) \ | 795 | $(LISP_H) \ |
| 791 | $(SYSTIME_H) \ | 796 | $(SYSTIME_H) \ |
| @@ -799,6 +804,7 @@ $(BLD)/emacs.$(O) : \ | |||
| 799 | $(SRC)/keymap.h \ | 804 | $(SRC)/keymap.h \ |
| 800 | $(SRC)/unexec.h \ | 805 | $(SRC)/unexec.h \ |
| 801 | $(SRC)/w32.h \ | 806 | $(SRC)/w32.h \ |
| 807 | $(SRC)/w32common.h \ | ||
| 802 | $(SRC)/w32heap.h \ | 808 | $(SRC)/w32heap.h \ |
| 803 | $(SRC)/w32select.h \ | 809 | $(SRC)/w32select.h \ |
| 804 | $(NT_INC)/sys/file.h \ | 810 | $(NT_INC)/sys/file.h \ |
| @@ -837,10 +843,13 @@ $(BLD)/fileio.$(O) : \ | |||
| 837 | $(SRC)/commands.h \ | 843 | $(SRC)/commands.h \ |
| 838 | $(SRC)/w32.h \ | 844 | $(SRC)/w32.h \ |
| 839 | $(NT_INC)/pwd.h \ | 845 | $(NT_INC)/pwd.h \ |
| 846 | $(NT_INC)/sys/acl.h \ | ||
| 840 | $(NT_INC)/sys/file.h \ | 847 | $(NT_INC)/sys/file.h \ |
| 841 | $(NT_INC)/sys/stat.h \ | 848 | $(NT_INC)/sys/stat.h \ |
| 842 | $(NT_INC)/unistd.h \ | 849 | $(NT_INC)/unistd.h \ |
| 850 | $(GNU_LIB)/allocator.h \ | ||
| 843 | $(BUFFER_H) \ | 851 | $(BUFFER_H) \ |
| 852 | $(CAREADLINKAT_H) \ | ||
| 844 | $(CHARACTER_H) \ | 853 | $(CHARACTER_H) \ |
| 845 | $(CODING_H) \ | 854 | $(CODING_H) \ |
| 846 | $(CONFIG_H) \ | 855 | $(CONFIG_H) \ |
| @@ -855,6 +864,7 @@ $(BLD)/fileio.$(O) : \ | |||
| 855 | 864 | ||
| 856 | $(BLD)/filelock.$(O) : \ | 865 | $(BLD)/filelock.$(O) : \ |
| 857 | $(SRC)/filelock.c \ | 866 | $(SRC)/filelock.c \ |
| 867 | $(SRC)/w32.h \ | ||
| 858 | $(NT_INC)/pwd.h \ | 868 | $(NT_INC)/pwd.h \ |
| 859 | $(NT_INC)/sys/file.h \ | 869 | $(NT_INC)/sys/file.h \ |
| 860 | $(NT_INC)/sys/stat.h \ | 870 | $(NT_INC)/sys/stat.h \ |
| @@ -1179,6 +1189,7 @@ $(BLD)/w32.$(O) : \ | |||
| 1179 | $(SRC)/w32select.h \ | 1189 | $(SRC)/w32select.h \ |
| 1180 | $(NT_INC)/dirent.h \ | 1190 | $(NT_INC)/dirent.h \ |
| 1181 | $(NT_INC)/pwd.h \ | 1191 | $(NT_INC)/pwd.h \ |
| 1192 | $(NT_INC)/sys/acl.h \ | ||
| 1182 | $(NT_INC)/sys/file.h \ | 1193 | $(NT_INC)/sys/file.h \ |
| 1183 | $(NT_INC)/sys/time.h \ | 1194 | $(NT_INC)/sys/time.h \ |
| 1184 | $(GNU_LIB)/allocator.h \ | 1195 | $(GNU_LIB)/allocator.h \ |
| @@ -1287,11 +1298,13 @@ $(BLD)/process.$(O) : \ | |||
| 1287 | $(CHARACTER_H) \ | 1298 | $(CHARACTER_H) \ |
| 1288 | $(CODING_H) \ | 1299 | $(CODING_H) \ |
| 1289 | $(CONFIG_H) \ | 1300 | $(CONFIG_H) \ |
| 1301 | $(C_CTYPE_H) \ | ||
| 1290 | $(DISPEXTERN_H) \ | 1302 | $(DISPEXTERN_H) \ |
| 1291 | $(FRAME_H) \ | 1303 | $(FRAME_H) \ |
| 1292 | $(KEYBOARD_H) \ | 1304 | $(KEYBOARD_H) \ |
| 1293 | $(LISP_H) \ | 1305 | $(LISP_H) \ |
| 1294 | $(PROCESS_H) \ | 1306 | $(PROCESS_H) \ |
| 1307 | $(SIG2STR_H) \ | ||
| 1295 | $(SOCKET_H) \ | 1308 | $(SOCKET_H) \ |
| 1296 | $(SYSSIGNAL_H) \ | 1309 | $(SYSSIGNAL_H) \ |
| 1297 | $(SYSTIME_H) \ | 1310 | $(SYSTIME_H) \ |
| @@ -1387,11 +1400,9 @@ $(BLD)/sysdep.$(O) : \ | |||
| 1387 | $(NT_INC)/sys/file.h \ | 1400 | $(NT_INC)/sys/file.h \ |
| 1388 | $(NT_INC)/sys/stat.h \ | 1401 | $(NT_INC)/sys/stat.h \ |
| 1389 | $(NT_INC)/unistd.h \ | 1402 | $(NT_INC)/unistd.h \ |
| 1390 | $(GNU_LIB)/allocator.h \ | ||
| 1391 | $(GNU_LIB)/execinfo.h \ | 1403 | $(GNU_LIB)/execinfo.h \ |
| 1392 | $(GNU_LIB)/ignore-value.h \ | 1404 | $(GNU_LIB)/ignore-value.h \ |
| 1393 | $(GNU_LIB)/utimens.h \ | 1405 | $(GNU_LIB)/utimens.h \ |
| 1394 | $(CAREADLINKAT_H) \ | ||
| 1395 | $(CONFIG_H) \ | 1406 | $(CONFIG_H) \ |
| 1396 | $(C_CTYPE_H) \ | 1407 | $(C_CTYPE_H) \ |
| 1397 | $(DISPEXTERN_H) \ | 1408 | $(DISPEXTERN_H) \ |
| @@ -1482,7 +1493,6 @@ $(BLD)/unexw32.$(O) : \ | |||
| 1482 | 1493 | ||
| 1483 | $(BLD)/vm-limit.$(O) : \ | 1494 | $(BLD)/vm-limit.$(O) : \ |
| 1484 | $(SRC)/vm-limit.c \ | 1495 | $(SRC)/vm-limit.c \ |
| 1485 | $(SRC)/mem-limits.h \ | ||
| 1486 | $(SRC)/w32heap.h \ | 1496 | $(SRC)/w32heap.h \ |
| 1487 | $(NT_INC)/unistd.h \ | 1497 | $(NT_INC)/unistd.h \ |
| 1488 | $(CONFIG_H) \ | 1498 | $(CONFIG_H) \ |
| @@ -1693,6 +1703,18 @@ $(BLD)/w32uniscribe.$(O) : \ | |||
| 1693 | $(W32FONT_H) \ | 1703 | $(W32FONT_H) \ |
| 1694 | $(W32TERM_H) | 1704 | $(W32TERM_H) |
| 1695 | 1705 | ||
| 1706 | $(BLD)/w32notify.$(O) : \ | ||
| 1707 | $(SRC)/w32notify.c \ | ||
| 1708 | $(SRC)/w32.h \ | ||
| 1709 | $(SRC)/w32common.h \ | ||
| 1710 | $(CODING_H) \ | ||
| 1711 | $(CONFIG_H) \ | ||
| 1712 | $(FRAME_H) \ | ||
| 1713 | $(KEYBOARD_H) \ | ||
| 1714 | $(LISP_H) \ | ||
| 1715 | $(TERMHOOKS_H) \ | ||
| 1716 | $(W32TERM_H) | ||
| 1717 | |||
| 1696 | # Each object file depends on stamp_BLD, because in parallel builds we must | 1718 | # Each object file depends on stamp_BLD, because in parallel builds we must |
| 1697 | # make sure $(BLD) exists before starting compilations. | 1719 | # make sure $(BLD) exists before starting compilations. |
| 1698 | # | 1720 | # |