summaryrefslogtreecommitdiff
path: root/src/makefile.w32-in
diff options
context:
space:
mode:
authorEli Zaretskii <eliz@gnu.org>2012-10-06 20:02:31 +0200
committerEli Zaretskii <eliz@gnu.org>2012-10-06 20:02:31 +0200
commit477f1e504482847a3b1209bc0a1dccfded649370 (patch)
tree4c402149fa77ebada9340da6772157a2338a2bdd /src/makefile.w32-in
parentd5acb99a199d83cde1a43482709c3e9d4ec34b2f (diff)
downloademacs-477f1e504482847a3b1209bc0a1dccfded649370.tar.gz
Initial version of the w32notify code.
Adding and removing a watch seems to work: a new thread is launched when a watch is added and exits when the watch is removed. But there are no notifications, so it seems. At least, the Lisp callback function passed to w32notify-add-watch is not called.
Diffstat (limited to 'src/makefile.w32-in')
-rw-r--r--src/makefile.w32-in14
1 files changed, 13 insertions, 1 deletions
diff --git a/src/makefile.w32-in b/src/makefile.w32-in
index c6fbf59fb5a..f051ed6a8a9 100644
--- a/src/makefile.w32-in
+++ b/src/makefile.w32-in
@@ -134,6 +134,7 @@ OBJ2 = $(BLD)/sysdep.$(O) \
$(BLD)/w32menu.$(O) \
$(BLD)/w32reg.$(O) \
$(BLD)/w32font.$(O) \
+ $(BLD)/w32notify.$(O) \
$(BLD)/w32uniscribe.$(O)
LIBS = $(TLIB0) \
@@ -209,7 +210,7 @@ GLOBAL_SOURCES = dosfns.c msdos.c \
fontset.c menu.c dbusbind.c \
w32.c w32console.c w32fns.c w32heap.c w32inevt.c \
w32menu.c w32proc.c w32reg.c w32select.c w32term.c w32xfns.c \
- font.c w32font.c w32uniscribe.c \
+ font.c w32font.c w32uniscribe.c w32notify.c \
dispnew.c frame.c scroll.c xdisp.c window.c bidi.c \
charset.c coding.c category.c ccl.c character.c chartab.c \
cm.c term.c terminal.c xfaces.c \
@@ -1673,6 +1674,17 @@ $(BLD)/w32uniscribe.$(O) : \
$(W32FONT_H) \
$(W32TERM_H)
+$(BLD)/w32notify.$(O) : \
+ $(SRC)/w32notify.c \
+ $(SRC)/w32heap.h \
+ $(CODING_H) \
+ $(CONFIG_H) \
+ $(FRAME_H) \
+ $(KEYBOARD_H) \
+ $(LISP_H) \
+ $(TERMHOOKS_H) \
+ $(W32TERM_H)
+
# Each object file depends on stamp_BLD, because in parallel builds we must
# make sure $(BLD) exists before starting compilations.
#