aboutsummaryrefslogtreecommitdiffstats
path: root/lib-src/makefile.w32-in
diff options
context:
space:
mode:
Diffstat (limited to 'lib-src/makefile.w32-in')
-rw-r--r--lib-src/makefile.w32-in29
1 files changed, 18 insertions, 11 deletions
diff --git a/lib-src/makefile.w32-in b/lib-src/makefile.w32-in
index c145e47f197..f941e862514 100644
--- a/lib-src/makefile.w32-in
+++ b/lib-src/makefile.w32-in
@@ -20,7 +20,7 @@
20# Boston, MA 02110-1301, USA. 20# Boston, MA 02110-1301, USA.
21# 21#
22 22
23ALL = make-docfile hexl ctags etags movemail ebrowse 23ALL = make-docfile hexl ctags etags movemail ebrowse sorted-doc digest-doc
24 24
25.PHONY: $(ALL) 25.PHONY: $(ALL)
26 26
@@ -30,15 +30,10 @@ LOCAL_FLAGS = -DWINDOWSNT -DDOS_NT -DSTDC_HEADERS=1 -DNO_LDAV=1 \
30 30
31# don't know what (if) to do with these yet... 31# don't know what (if) to do with these yet...
32# 32#
33# $(BLD)/sorted-doc.exe \
34# $(BLD)/env.exe \
35# $(BLD)/server.exe \ 33# $(BLD)/server.exe \
36# $(BLD)/emacstool.exe \ 34# $(BLD)/emacstool.exe \
37# $(BLD)/leditcfns.exe \
38# $(BLD)/emacsclient.exe \ 35# $(BLD)/emacsclient.exe \
39# $(BLD)/cvtmail.exe \ 36# $(BLD)/cvtmail.exe \
40# $(BLD)/digest-doc.exe \
41# $(BLD)/test-distrib.exe \
42 37
43LIBS = $(BASE_LIBS) $(ADVAPI32) 38LIBS = $(BASE_LIBS) $(ADVAPI32)
44 39
@@ -48,6 +43,12 @@ $(BLD)/hexl.exe: $(BLD)/hexl.$(O)
48 $(LINK) $(LINK_OUT)$@ $(LINK_FLAGS) $(BLD)/hexl.$(O) $(LIBS) 43 $(LINK) $(LINK_OUT)$@ $(LINK_FLAGS) $(BLD)/hexl.$(O) $(LIBS)
49$(BLD)/fakemail.exe: $(BLD)/fakemail.$(O) $(BLD)/ntlib.$(O) 44$(BLD)/fakemail.exe: $(BLD)/fakemail.$(O) $(BLD)/ntlib.$(O)
50 $(LINK) $(LINK_OUT)$@ $(LINK_FLAGS) $(BLD)/fakemail.$(O) $(BLD)/ntlib.$(O) $(LIBS) 45 $(LINK) $(LINK_OUT)$@ $(LINK_FLAGS) $(BLD)/fakemail.$(O) $(BLD)/ntlib.$(O) $(LIBS)
46$(BLD)/sorted-doc.exe: $(BLD)/sorted-doc.$(O)
47 $(LINK) $(LINK_OUT)$@ $(LINK_FLAGS) $(BLD)/sorted-doc.$(O) $(LIBS)
48$(BLD)/digest-doc.exe: $(BLD)/digest-doc.$(O)
49 $(LINK) $(LINK_OUT)$@ $(LINK_FLAGS) $(BLD)/digest-doc.$(O) $(LIBS)
50$(BLD)/test-distrib.exe: $(BLD)/test-distrib.$(O)
51 $(LINK) $(LINK_OUT)$@ $(LINK_FLAGS) $(BLD)/test-distrib.$(O) $(LIBS)
51 52
52make-docfile: $(BLD) $(BLD)/make-docfile.exe 53make-docfile: $(BLD) $(BLD)/make-docfile.exe
53ctags: $(BLD) $(BLD)/ctags.exe 54ctags: $(BLD) $(BLD)/ctags.exe
@@ -56,6 +57,11 @@ ebrowse: $(BLD) $(BLD)/ebrowse.exe
56hexl: $(BLD) $(BLD)/hexl.exe 57hexl: $(BLD) $(BLD)/hexl.exe
57movemail: $(BLD) $(BLD)/movemail.exe 58movemail: $(BLD) $(BLD)/movemail.exe
58fakemail: $(BLD) $(BLD)/fakemail.exe 59fakemail: $(BLD) $(BLD)/fakemail.exe
60sorted-doc: $(BLD) $(BLD)/sorted-doc.exe
61digest-doc: $(BLD) $(BLD)/digest-doc.exe
62
63test-distrib: $(BLD) $(BLD)/test-distrib.exe
64 "$(BLD)/test-distrib.exe" "$(SRC)/testfile"
59 65
60GETOPTOBJS = $(BLD)/getopt.$(O) $(BLD)/getopt1.$(O) 66GETOPTOBJS = $(BLD)/getopt.$(O) $(BLD)/getopt1.$(O)
61GETOPTDEPS = $(GETOPTOBJS) getopt.h 67GETOPTDEPS = $(GETOPTOBJS) getopt.h
@@ -114,15 +120,11 @@ $(BLD)/ctags.$(O): ctags.c
114# 120#
115# don't know what to do with these yet... 121# don't know what to do with these yet...
116# 122#
117# $(BLD)/sorted-doc.exe: $(BLD)/sorted-doc.$(O)
118# $(BLD)/yow.exe: $(BLD)/yow.$(O) 123# $(BLD)/yow.exe: $(BLD)/yow.$(O)
119# $(BLD)/emacstool.exe: $(BLD)/emacstool.$(O) 124# $(BLD)/emacstool.exe: $(BLD)/emacstool.$(O)
120# $(BLD)/leditcfns.exe: $(BLD)/leditcfns.$(O)
121# $(BLD)/server.exe: $(BLD)/server.$(O) 125# $(BLD)/server.exe: $(BLD)/server.$(O)
122# $(BLD)/cvtmail.exe: $(BLD)/cvtmail.$(O) 126# $(BLD)/cvtmail.exe: $(BLD)/cvtmail.$(O)
123# $(BLD)/digest-doc.exe: $(BLD)/digest-doc.$(O)
124# $(BLD)/emacsclient.exe: $(BLD)/emacsclient.$(O) 127# $(BLD)/emacsclient.exe: $(BLD)/emacsclient.$(O)
125# $(BLD)/test-distrib.exe: $(BLD)/test-distrib.$(O)
126 128
127# 129#
128# From ..\src\Makefile.in 130# From ..\src\Makefile.in
@@ -283,6 +285,8 @@ install: $(INSTALL_FILES)
283 $(CP) $(BLD)/ctags.exe $(INSTALL_DIR)/bin 285 $(CP) $(BLD)/ctags.exe $(INSTALL_DIR)/bin
284 $(CP) $(BLD)/hexl.exe $(INSTALL_DIR)/bin 286 $(CP) $(BLD)/hexl.exe $(INSTALL_DIR)/bin
285 $(CP) $(BLD)/movemail.exe $(INSTALL_DIR)/bin 287 $(CP) $(BLD)/movemail.exe $(INSTALL_DIR)/bin
288 $(CP) $(BLD)/sorted-doc.exe $(INSTALL_DIR)/bin
289 $(CP) $(BLD)/digest-doc.exe $(INSTALL_DIR)/bin
286 - mkdir "$(INSTALL_DIR)/etc" 290 - mkdir "$(INSTALL_DIR)/etc"
287 $(CP) $(DOC) $(INSTALL_DIR)/etc 291 $(CP) $(DOC) $(INSTALL_DIR)/etc
288 292
@@ -438,7 +442,10 @@ $(BLD)/qsort.$(O) : \
438 $(SRC)/qsort.c 442 $(SRC)/qsort.c
439 443
440$(BLD)/sorted-doc.$(O) : \ 444$(BLD)/sorted-doc.$(O) : \
441 $(SRC)/sorted-doc.c 445 $(SRC)/sorted-doc.c \
446 $(EMACS_ROOT)/src/s/ms-w32.h \
447 $(EMACS_ROOT)/src/m/intel386.h \
448 $(EMACS_ROOT)/src/config.h \
442 449
443$(BLD)/tcp.$(O) : \ 450$(BLD)/tcp.$(O) : \
444 $(SRC)/tcp.c 451 $(SRC)/tcp.c