aboutsummaryrefslogtreecommitdiffstats
path: root/src/makefile.nt
diff options
context:
space:
mode:
authorJason Rumney2000-01-23 03:14:51 +0000
committerJason Rumney2000-01-23 03:14:51 +0000
commit2e7aef9d1dee00727abdc8a9e9a9c14adaea1edb (patch)
tree7d6f916d65f176016824a321613a4f01d5b8e199 /src/makefile.nt
parent63bd786b12b63809d94bcf1151b0cb78c848a4fe (diff)
downloademacs-2e7aef9d1dee00727abdc8a9e9a9c14adaea1edb.tar.gz
emacs-2e7aef9d1dee00727abdc8a9e9a9c14adaea1edb.zip
Added composite.obj and intervals.obj.
Diffstat (limited to 'src/makefile.nt')
-rw-r--r--src/makefile.nt73
1 files changed, 57 insertions, 16 deletions
diff --git a/src/makefile.nt b/src/makefile.nt
index 059c539581d..ea8025ecb34 100644
--- a/src/makefile.nt
+++ b/src/makefile.nt
@@ -137,6 +137,7 @@ OBJ2 = $(BLD)\w32.obj \
137 $(BLD)\frame.obj \ 137 $(BLD)\frame.obj \
138 $(BLD)\gmalloc.obj \ 138 $(BLD)\gmalloc.obj \
139 $(BLD)\intervals.obj \ 139 $(BLD)\intervals.obj \
140 $(BLD)\composite.obj \
140 $(BLD)\ralloc.obj \ 141 $(BLD)\ralloc.obj \
141 $(BLD)\textprop.obj \ 142 $(BLD)\textprop.obj \
142 $(BLD)\vm-limit.obj \ 143 $(BLD)\vm-limit.obj \
@@ -250,7 +251,7 @@ $(TLIBW32): $(WIN32OBJ)
250# the end of Emacs' data section portably across compilers and systems. 251# the end of Emacs' data section portably across compilers and systems.
251# 252#
252$(TLASTLIB): $(BLD)\lastfile.obj 253$(TLASTLIB): $(BLD)\lastfile.obj
253 @- $(AR) -out:$@ $** 254 @- $(AR) -out:$@ $**
254 255
255# 256#
256# Assuming INSTALL_DIR is defined, build and install emacs in it. 257# Assuming INSTALL_DIR is defined, build and install emacs in it.
@@ -302,6 +303,7 @@ $(BLD)\alloc.obj : \
302 $(SRC)\lisp.h \ 303 $(SRC)\lisp.h \
303 $(SRC)\dispextern.h \ 304 $(SRC)\dispextern.h \
304 $(SRC)\intervals.h \ 305 $(SRC)\intervals.h \
306 $(SRC)\composite.h \
305 $(SRC)\puresize.h \ 307 $(SRC)\puresize.h \
306 $(SRC)\buffer.h \ 308 $(SRC)\buffer.h \
307 $(SRC)\window.h \ 309 $(SRC)\window.h \
@@ -328,6 +330,7 @@ $(BLD)\buffer.obj : \
328 $(SRC)\lisp.h \ 330 $(SRC)\lisp.h \
329 $(SRC)\dispextern.h \ 331 $(SRC)\dispextern.h \
330 $(SRC)\intervals.h \ 332 $(SRC)\intervals.h \
333 $(SRC)\composite.h \
331 $(SRC)\window.h \ 334 $(SRC)\window.h \
332 $(SRC)\commands.h \ 335 $(SRC)\commands.h \
333 $(SRC)\buffer.h \ 336 $(SRC)\buffer.h \
@@ -455,7 +458,8 @@ $(BLD)\dispnew.obj : \
455 $(SRC)\w32term.h \ 458 $(SRC)\w32term.h \
456 $(SRC)\xterm.h \ 459 $(SRC)\xterm.h \
457 $(SRC)\vmstime.h \ 460 $(SRC)\vmstime.h \
458 $(SRC)\systime.h 461 $(SRC)\systime.h \
462 $(SRC)\composite.h
459 463
460$(BLD)\doc.obj : \ 464$(BLD)\doc.obj : \
461 $(SRC)\doc.c \ 465 $(SRC)\doc.c \
@@ -497,6 +501,7 @@ $(BLD)\editfns.obj : \
497 $(SRC)\lisp.h \ 501 $(SRC)\lisp.h \
498 $(SRC)\dispextern.h \ 502 $(SRC)\dispextern.h \
499 $(SRC)\intervals.h \ 503 $(SRC)\intervals.h \
504 $(SRC)\composite.h \
500 $(SRC)\buffer.h \ 505 $(SRC)\buffer.h \
501 $(SRC)\window.h \ 506 $(SRC)\window.h \
502 $(SRC)\vmstime.h \ 507 $(SRC)\vmstime.h \
@@ -511,6 +516,7 @@ $(BLD)\emacs.obj : \
511 $(SRC)\commands.h \ 516 $(SRC)\commands.h \
512 $(SRC)\dispextern.h \ 517 $(SRC)\dispextern.h \
513 $(SRC)\intervals.h \ 518 $(SRC)\intervals.h \
519 $(SRC)\composite.h \
514 $(EMACS_ROOT)\nt\inc\sys\ioctl.h \ 520 $(EMACS_ROOT)\nt\inc\sys\ioctl.h \
515 $(EMACS_ROOT)\nt\inc\sys\file.h \ 521 $(EMACS_ROOT)\nt\inc\sys\file.h \
516 $(SRC)\systty.h \ 522 $(SRC)\systty.h \
@@ -541,6 +547,7 @@ $(BLD)\fileio.obj : \
541 $(SRC)\lisp.h \ 547 $(SRC)\lisp.h \
542 $(SRC)\dispextern.h \ 548 $(SRC)\dispextern.h \
543 $(SRC)\intervals.h \ 549 $(SRC)\intervals.h \
550 $(SRC)\composite.h \
544 $(SRC)\buffer.h \ 551 $(SRC)\buffer.h \
545 $(SRC)\window.h \ 552 $(SRC)\window.h \
546 $(EMACS_ROOT)\nt\inc\sys\file.h \ 553 $(EMACS_ROOT)\nt\inc\sys\file.h \
@@ -595,7 +602,8 @@ $(BLD)\fns.obj : \
595 $(SRC)\buffer.h \ 602 $(SRC)\buffer.h \
596 $(SRC)\keyboard.h \ 603 $(SRC)\keyboard.h \
597 $(SRC)\dispextern.h \ 604 $(SRC)\dispextern.h \
598 $(SRC)\intervals.h 605 $(SRC)\intervals.h \
606 $(SRC)\composite.h
599 607
600$(BLD)\frame.obj : \ 608$(BLD)\frame.obj : \
601 $(SRC)\frame.c \ 609 $(SRC)\frame.c \
@@ -652,7 +660,8 @@ $(BLD)\indent.obj : \
652 $(SRC)\disptab.h \ 660 $(SRC)\disptab.h \
653 $(SRC)\dispextern.h \ 661 $(SRC)\dispextern.h \
654 $(SRC)\intervals.h \ 662 $(SRC)\intervals.h \
655 $(SRC)\region-cache.h 663 $(SRC)\region-cache.h \
664 $(SRC)\composite.h
656 665
657$(BLD)\insdel.obj : \ 666$(BLD)\insdel.obj : \
658 $(SRC)\insdel.c \ 667 $(SRC)\insdel.c \
@@ -662,6 +671,7 @@ $(BLD)\insdel.obj : \
662 $(SRC)\lisp.h \ 671 $(SRC)\lisp.h \
663 $(SRC)\dispextern.h \ 672 $(SRC)\dispextern.h \
664 $(SRC)\intervals.h \ 673 $(SRC)\intervals.h \
674 $(SRC)\composite.h \
665 $(SRC)\buffer.h \ 675 $(SRC)\buffer.h \
666 $(SRC)\window.h \ 676 $(SRC)\window.h \
667 $(SRC)\blockinput.h 677 $(SRC)\blockinput.h
@@ -696,6 +706,7 @@ $(BLD)\keyboard.obj : \
696 $(SRC)\keyboard.h \ 706 $(SRC)\keyboard.h \
697 $(SRC)\dispextern.h \ 707 $(SRC)\dispextern.h \
698 $(SRC)\intervals.h \ 708 $(SRC)\intervals.h \
709 $(SRC)\composite.h \
699 $(SRC)\blockinput.h \ 710 $(SRC)\blockinput.h \
700 $(SRC)\msdos.h \ 711 $(SRC)\msdos.h \
701 $(SRC)\syssignal.h \ 712 $(SRC)\syssignal.h \
@@ -845,7 +856,8 @@ $(BLD)\print.obj : \
845 $(SRC)\process.h \ 856 $(SRC)\process.h \
846 $(SRC)\termchar.h \ 857 $(SRC)\termchar.h \
847 $(SRC)\dispextern.h \ 858 $(SRC)\dispextern.h \
848 $(SRC)\intervals.h 859 $(SRC)\intervals.h \
860 $(SRC)\composite.h
849 861
850$(BLD)\process.obj : \ 862$(BLD)\process.obj : \
851 $(SRC)\process.c \ 863 $(SRC)\process.c \
@@ -867,7 +879,8 @@ $(BLD)\process.obj : \
867 $(SRC)\lisp.h \ 879 $(SRC)\lisp.h \
868 $(SRC)\vmstime.h \ 880 $(SRC)\vmstime.h \
869 $(SRC)\systime.h \ 881 $(SRC)\systime.h \
870 $(SRC)\termopts.h 882 $(SRC)\termopts.h \
883 $(SRC)\composite.h
871 884
872$(BLD)\ralloc.obj : \ 885$(BLD)\ralloc.obj : \
873 $(SRC)\ralloc.c \ 886 $(SRC)\ralloc.c \
@@ -924,7 +937,8 @@ $(BLD)\search.obj : \
924 $(SRC)\commands.h \ 937 $(SRC)\commands.h \
925 $(SRC)\blockinput.h \ 938 $(SRC)\blockinput.h \
926 $(SRC)\regex.h \ 939 $(SRC)\regex.h \
927 $(SRC)\region-cache.h 940 $(SRC)\region-cache.h \
941 $(SRC)\composite.h
928 942
929$(BLD)\strftime.obj : \ 943$(BLD)\strftime.obj : \
930 $(SRC)\strftime.c \ 944 $(SRC)\strftime.c \
@@ -950,7 +964,8 @@ $(BLD)\syntax.obj : \
950 $(SRC)\lisp.h \ 964 $(SRC)\lisp.h \
951 $(SRC)\commands.h \ 965 $(SRC)\commands.h \
952 $(SRC)\buffer.h \ 966 $(SRC)\buffer.h \
953 $(SRC)\syntax.h 967 $(SRC)\syntax.h \
968 $(SRC)\composite.h
954 969
955$(BLD)\sysdep.obj : \ 970$(BLD)\sysdep.obj : \
956 $(SRC)\sysdep.c \ 971 $(SRC)\sysdep.c \
@@ -1017,9 +1032,31 @@ $(BLD)\textprop.obj : \
1017 $(SRC)\lisp.h \ 1032 $(SRC)\lisp.h \
1018 $(SRC)\dispextern.h \ 1033 $(SRC)\dispextern.h \
1019 $(SRC)\intervals.h \ 1034 $(SRC)\intervals.h \
1035 $(SRC)\composite.h \
1020 $(SRC)\buffer.h \ 1036 $(SRC)\buffer.h \
1021 $(SRC)\window.h 1037 $(SRC)\window.h
1022 1038
1039$(BLD)\intervals.obj : \
1040 $(SRC)\intervals.c \
1041 $(SRC)\buffer.h \
1042 $(SRC)\intervals.h \
1043 $(SRC)\composite.h \
1044 $(SRC)\keyboard.h \
1045 $(SRC)\puresize.h \
1046 $(EMACS_ROOT)\src\s\ms-w32.h \
1047 $(EMACS_ROOT)\src\m\intel386.h \
1048 $(EMACS_ROOT)\src\config.h
1049
1050$(BLD)\composite.obj : \
1051 $(SRC)\composite.c \
1052 $(SRC)\buffer.h \
1053 $(SRC)\charset.h \
1054 $(SRC)\intervals.h \
1055 $(SRC)\composite.h \
1056 $(EMACS_ROOT)\src\s\ms-w32.h \
1057 $(EMACS_ROOT)\src\m\intel386.h \
1058 $(EMACS_ROOT)\src\config.h
1059
1023$(BLD)\tparam.obj : \ 1060$(BLD)\tparam.obj : \
1024 $(SRC)\tparam.c \ 1061 $(SRC)\tparam.c \
1025 $(EMACS_ROOT)\src\s\ms-w32.h \ 1062 $(EMACS_ROOT)\src\s\ms-w32.h \
@@ -1074,7 +1111,8 @@ $(BLD)\window.obj : \
1074 $(SRC)\indent.h \ 1111 $(SRC)\indent.h \
1075 $(SRC)\termchar.h \ 1112 $(SRC)\termchar.h \
1076 $(SRC)\disptab.h \ 1113 $(SRC)\disptab.h \
1077 $(SRC)\keyboard.h 1114 $(SRC)\keyboard.h \
1115 $(SRC)\composite.h
1078 1116
1079$(BLD)\xdisp.obj : \ 1117$(BLD)\xdisp.obj : \
1080 $(SRC)\xdisp.c \ 1118 $(SRC)\xdisp.c \
@@ -1092,7 +1130,8 @@ $(BLD)\xdisp.obj : \
1092 $(SRC)\disptab.h \ 1130 $(SRC)\disptab.h \
1093 $(SRC)\termhooks.h \ 1131 $(SRC)\termhooks.h \
1094 $(SRC)\dispextern.h \ 1132 $(SRC)\dispextern.h \
1095 $(SRC)\intervals.h 1133 $(SRC)\intervals.h \
1134 $(SRC)\composite.h
1096 1135
1097$(BLD)\w32faces.obj: \ 1136$(BLD)\w32faces.obj: \
1098 $(EMACS_ROOT)\src\s\ms-w32.h \ 1137 $(EMACS_ROOT)\src\s\ms-w32.h \
@@ -1106,8 +1145,9 @@ $(BLD)\w32faces.obj: \
1106 $(SRC)\dispextern.h \ 1145 $(SRC)\dispextern.h \
1107 $(SRC)\frame.h \ 1146 $(SRC)\frame.h \
1108 $(SRC)\blockinput.h \ 1147 $(SRC)\blockinput.h \
1109 $(SRC)\window.h \ 1148 $(SRC)\window.h \
1110 $(SRC)\intervals.h 1149 $(SRC)\intervals.h \
1150 $(SRC)\composite.h
1111 1151
1112$(BLD)\w32fns.obj: \ 1152$(BLD)\w32fns.obj: \
1113 $(EMACS_ROOT)\src\s\ms-w32.h \ 1153 $(EMACS_ROOT)\src\s\ms-w32.h \
@@ -1119,7 +1159,7 @@ $(BLD)\w32fns.obj: \
1119 $(SRC)\w32term.h \ 1159 $(SRC)\w32term.h \
1120 $(SRC)\w32gui.h \ 1160 $(SRC)\w32gui.h \
1121 $(SRC)\frame.h \ 1161 $(SRC)\frame.h \
1122 $(SRC)\window.h \ 1162 $(SRC)\window.h \
1123 $(SRC)\buffer.h \ 1163 $(SRC)\buffer.h \
1124 $(SRC)\dispextern.h \ 1164 $(SRC)\dispextern.h \
1125 $(SRC)\keyboard.h \ 1165 $(SRC)\keyboard.h \
@@ -1136,7 +1176,7 @@ $(BLD)\w32menu.obj: \
1136 $(SRC)\lisp.h \ 1176 $(SRC)\lisp.h \
1137 $(SRC)\termhooks.h \ 1177 $(SRC)\termhooks.h \
1138 $(SRC)\frame.h \ 1178 $(SRC)\frame.h \
1139 $(SRC)\window.h \ 1179 $(SRC)\window.h \
1140 $(SRC)\keyboard.h \ 1180 $(SRC)\keyboard.h \
1141 $(SRC)\blockinput.h \ 1181 $(SRC)\blockinput.h \
1142 $(SRC)\buffer.h 1182 $(SRC)\buffer.h
@@ -1161,9 +1201,10 @@ $(BLD)\w32term.obj: \
1161 $(SRC)\gnu.h \ 1201 $(SRC)\gnu.h \
1162 $(SRC)\disptab.h \ 1202 $(SRC)\disptab.h \
1163 $(SRC)\buffer.h \ 1203 $(SRC)\buffer.h \
1164 $(SRC)\window.h \ 1204 $(SRC)\window.h \
1165 $(SRC)\keyboard.h \ 1205 $(SRC)\keyboard.h \
1166 $(SRC)\intervals.h 1206 $(SRC)\intervals.h \
1207 $(SRC)\composite.h
1167 1208
1168$(BLD)\w32select.obj: \ 1209$(BLD)\w32select.obj: \
1169 $(EMACS_ROOT)\src\s\ms-w32.h \ 1210 $(EMACS_ROOT)\src\s\ms-w32.h \