aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJason Rumney2007-05-31 01:18:19 +0000
committerJason Rumney2007-05-31 01:18:19 +0000
commit223250a68fb1ecd7ac1dce0edfc6c05969517677 (patch)
tree58f1efd51a90965c793890684ba548678a69d949 /src
parentf7a84cb49314bc2dc0aa5cb20afda1b118098468 (diff)
downloademacs-223250a68fb1ecd7ac1dce0edfc6c05969517677.tar.gz
emacs-223250a68fb1ecd7ac1dce0edfc6c05969517677.zip
(font.o, w32font.o): New objects.
(fontset.o, xdisp.o, xfaces.o, w32fns.o, w32term.o): Depend on font.h (FONTOBJ): New group of objects conditioned on USE_FONT_BACKEND.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog6
-rw-r--r--src/makefile.w32-in43
2 files changed, 47 insertions, 2 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 31b8f51bf18..8836f2c4b03 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,9 @@
12007-05-31 Jason Rumney <jasonr@gnu.org>
2
3 * makefile.w32-in (font.o, w32font.o): New objects.
4 (fontset.o, xdisp.o, xfaces.o, w32fns.o, w32term.o): Depend on font.h
5 (FONTOBJ): New group of objects conditioned on USE_FONT_BACKEND.
6
12007-05-28 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> 72007-05-28 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2 8
3 * xdisp.c (redisplay_internal): Bind inhibit-point-motion-hooks to t 9 * xdisp.c (redisplay_internal): Bind inhibit-point-motion-hooks to t
diff --git a/src/makefile.w32-in b/src/makefile.w32-in
index 496e890fb03..c6c8cdde88f 100644
--- a/src/makefile.w32-in
+++ b/src/makefile.w32-in
@@ -137,6 +137,12 @@ WIN32OBJ = $(BLD)/w32term.$(O) \
137 $(BLD)/w32reg.$(O) \ 137 $(BLD)/w32reg.$(O) \
138 $(BLD)/w32bdf.$(O) 138 $(BLD)/w32bdf.$(O)
139 139
140FONTOBJ =
141ifdef USE_FONTBACKEND
142FONTOBJ = $(BLD)/font.$(O) \
143 $(BLD)/w32font.$(O)
144endif
145
140LIBS = $(TLIB0) \ 146LIBS = $(TLIB0) \
141 $(TLIB1) \ 147 $(TLIB1) \
142 $(TLIBW32) \ 148 $(TLIBW32) \
@@ -178,6 +184,7 @@ $(TEMACS): $(TLIB0) $(TLIB1) $(TLIBW32) $(TLASTLIB) $(TOBJ) $(TRES) \
178 echo $(OBJ0) > $(BLD)/buildobj.lst 184 echo $(OBJ0) > $(BLD)/buildobj.lst
179 echo $(OBJ1) >> $(BLD)/buildobj.lst 185 echo $(OBJ1) >> $(BLD)/buildobj.lst
180 echo $(WIN32OBJ) >> $(BLD)/buildobj.lst 186 echo $(WIN32OBJ) >> $(BLD)/buildobj.lst
187 echo $(FONTOBJ) >> $(BLD)/buildobj.lst
181 188
182bootstrap: bootstrap-emacs 189bootstrap: bootstrap-emacs
183 190
@@ -226,7 +233,7 @@ $(TLIB0): $(OBJ0)
226$(TLIB1): $(OBJ1) 233$(TLIB1): $(OBJ1)
227 - $(DEL) $@ 234 - $(DEL) $@
228 $(AR) $(AR_OUT)$@ $(ALL_DEPS) 235 $(AR) $(AR_OUT)$@ $(ALL_DEPS)
229$(TLIBW32): $(WIN32OBJ) 236$(TLIBW32): $(WIN32OBJ) $(FONTOBJ)
230 - $(DEL) $@ 237 - $(DEL) $@
231 $(AR) $(AR_OUT)$@ $(ALL_DEPS) 238 $(AR) $(AR_OUT)$@ $(ALL_DEPS)
232 239
@@ -742,6 +749,19 @@ $(BLD)/fns.$(O) : \
742 $(SRC)/w32gui.h \ 749 $(SRC)/w32gui.h \
743 $(SRC)/window.h 750 $(SRC)/window.h
744 751
752$(BLD)/font.$(O) : \
753 $(SRC)/font.c \
754 $(EMACS_ROOT)/src/s/ms-w32.h \
755 $(EMACS_ROOT)/src/m/intel386.h \
756 $(EMACS_ROOT)/src/config.h \
757 $(SRC)/dispextern.h \
758 $(SRC)/frame.h \
759 $(SRC)/window.h \
760 $(SRC)/ccl.h \
761 $(SRC)/character.h \
762 $(SRC)/charset.h \
763 $(SRC)/font.h
764
745$(BLD)/fontset.$(O) : \ 765$(BLD)/fontset.$(O) : \
746 $(SRC)/fontset.c \ 766 $(SRC)/fontset.c \
747 $(EMACS_ROOT)/src/s/ms-w32.h \ 767 $(EMACS_ROOT)/src/s/ms-w32.h \
@@ -752,6 +772,7 @@ $(BLD)/fontset.$(O) : \
752 $(SRC)/character.h \ 772 $(SRC)/character.h \
753 $(SRC)/charset.h \ 773 $(SRC)/charset.h \
754 $(SRC)/dispextern.h \ 774 $(SRC)/dispextern.h \
775 $(SRC)/font.h \
755 $(SRC)/fontset.h \ 776 $(SRC)/fontset.h \
756 $(SRC)/frame.h \ 777 $(SRC)/frame.h \
757 $(SRC)/keyboard.h \ 778 $(SRC)/keyboard.h \
@@ -1365,6 +1386,7 @@ $(BLD)/xdisp.$(O) : \
1365 $(SRC)/composite.h \ 1386 $(SRC)/composite.h \
1366 $(SRC)/dispextern.h \ 1387 $(SRC)/dispextern.h \
1367 $(SRC)/disptab.h \ 1388 $(SRC)/disptab.h \
1389 $(SRC)/font.h \
1368 $(SRC)/fontset.h \ 1390 $(SRC)/fontset.h \
1369 $(SRC)/frame.h \ 1391 $(SRC)/frame.h \
1370 $(SRC)/indent.h \ 1392 $(SRC)/indent.h \
@@ -1394,6 +1416,7 @@ $(BLD)/xfaces.$(O): \
1394 $(SRC)/charset.h \ 1416 $(SRC)/charset.h \
1395 $(SRC)/composite.h \ 1417 $(SRC)/composite.h \
1396 $(SRC)/dispextern.h \ 1418 $(SRC)/dispextern.h \
1419 $(SRC)/font.h \
1397 $(SRC)/fontset.h \ 1420 $(SRC)/fontset.h \
1398 $(SRC)/frame.h \ 1421 $(SRC)/frame.h \
1399 $(SRC)/intervals.h \ 1422 $(SRC)/intervals.h \
@@ -1419,6 +1442,7 @@ $(BLD)/w32fns.$(O): \
1419 $(SRC)/composite.h \ 1442 $(SRC)/composite.h \
1420 $(SRC)/dispextern.h \ 1443 $(SRC)/dispextern.h \
1421 $(SRC)/epaths.h \ 1444 $(SRC)/epaths.h \
1445 $(SRC)/font.h \
1422 $(SRC)/fontset.h \ 1446 $(SRC)/fontset.h \
1423 $(SRC)/frame.h \ 1447 $(SRC)/frame.h \
1424 $(SRC)/intervals.h \ 1448 $(SRC)/intervals.h \
@@ -1468,6 +1492,7 @@ $(BLD)/w32term.$(O): \
1468 $(SRC)/composite.h \ 1492 $(SRC)/composite.h \
1469 $(SRC)/dispextern.h \ 1493 $(SRC)/dispextern.h \
1470 $(SRC)/disptab.h \ 1494 $(SRC)/disptab.h \
1495 $(SRC)/font.h \
1471 $(SRC)/fontset.h \ 1496 $(SRC)/fontset.h \
1472 $(SRC)/frame.h \ 1497 $(SRC)/frame.h \
1473 $(SRC)/gnu.h \ 1498 $(SRC)/gnu.h \
@@ -1554,7 +1579,21 @@ $(BLD)/w32bdf.$(O): \
1554 $(SRC)/w32gui.h \ 1579 $(SRC)/w32gui.h \
1555 $(SRC)/w32term.h 1580 $(SRC)/w32term.h
1556 1581
1582$(BLD)/w32font$(O): \
1583 $(SRC)/w32font.c \
1584 $(EMACS_ROOT)/src/s/ms-w32.h \
1585 $(EMACS_ROOT)/src/m/intel386.h \
1586 $(EMACS_ROOT)/src/config.h \
1587 $(SRC)/character.h \
1588 $(SRC)/charset.h \
1589 $(SRC)/dispextern.h \
1590 $(SRC)/font.h \
1591 $(SRC)/fontset.h \
1592 $(SRC)/frame.h \
1593 $(SRC)/w32gui.h \
1594 $(SRC)/w32term.h
1595
1557# Each object file depends on stamp_BLD, because in parallel builds we must 1596# Each object file depends on stamp_BLD, because in parallel builds we must
1558# make sure $(BLD) exists before starting compilations. 1597# make sure $(BLD) exists before starting compilations.
1559# 1598#
1560$(OBJ0) $(OBJ1) $(WIN32OBJ) $(BLD)/lastfile.$(O) $(BLD)/firstfile.$(O): stamp_BLD 1599$(OBJ0) $(OBJ1) $(WIN32OBJ) $(FONTOBJ) $(BLD)/lastfile.$(O) $(BLD)/firstfile.$(O): stamp_BLD