Changeset 4098 for trunk/lib-src/makefile.w32-in
- Timestamp:
- 2006年07月01日 08時27分06秒 (2 years ago)
- Files:
-
- trunk/lib-src/makefile.w32-in (modified) (8 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/lib-src/makefile.w32-in
r4085 r4098 21 21 # 22 22 23 ALL = make-docfile hexl ctags etags movemail ebrowse23 ALL = make-docfile hexl ctags etags movemail ebrowse sorted-doc digest-doc 24 24 25 25 .PHONY: $(ALL) … … 31 31 # don't know what (if) to do with these yet... 32 32 # 33 # $(BLD)/sorted-doc.exe \34 # $(BLD)/env.exe \35 33 # $(BLD)/server.exe \ 36 34 # $(BLD)/emacstool.exe \ 37 # $(BLD)/leditcfns.exe \38 35 # $(BLD)/emacsclient.exe \ 39 36 # $(BLD)/cvtmail.exe \ 40 # $(BLD)/digest-doc.exe \41 # $(BLD)/test-distrib.exe \42 37 43 38 LIBS = $(BASE_LIBS) $(ADVAPI32) … … 49 44 $(BLD)/fakemail.exe: $(BLD)/fakemail.$(O) $(BLD)/ntlib.$(O) 50 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 52 53 make-docfile: $(BLD) $(BLD)/make-docfile.exe … … 57 58 movemail: $(BLD) $(BLD)/movemail.exe 58 59 fakemail: $(BLD) $(BLD)/fakemail.exe 60 sorted-doc: $(BLD) $(BLD)/sorted-doc.exe 61 digest-doc: $(BLD) $(BLD)/digest-doc.exe 62 63 test-distrib: $(BLD) $(BLD)/test-distrib.exe 64 "$(BLD)/test-distrib.exe" "$(SRC)/testfile" 59 65 60 66 GETOPTOBJS = $(BLD)/getopt.$(O) $(BLD)/getopt1.$(O) … … 115 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)119 123 # $(BLD)/emacstool.exe: $(BLD)/emacstool.$(O) 120 # $(BLD)/leditcfns.exe: $(BLD)/leditcfns.$(O)121 124 # $(BLD)/server.exe: $(BLD)/server.$(O) 122 125 # $(BLD)/cvtmail.exe: $(BLD)/cvtmail.$(O) 123 # $(BLD)/digest-doc.exe: $(BLD)/digest-doc.$(O)124 126 # $(BLD)/emacsclient.exe: $(BLD)/emacsclient.$(O) 125 # $(BLD)/test-distrib.exe: $(BLD)/test-distrib.$(O)126 127 127 128 # … … 294 295 $(CP) $(BLD)/hexl.exe $(INSTALL_DIR)/bin 295 296 $(CP) $(BLD)/movemail.exe $(INSTALL_DIR)/bin 297 $(CP) $(BLD)/sorted-doc.exe $(INSTALL_DIR)/bin 298 $(CP) $(BLD)/digest-doc.exe $(INSTALL_DIR)/bin 296 299 - mkdir "$(INSTALL_DIR)/etc" 297 300 $(CP) $(DOC) $(INSTALL_DIR)/etc … … 449 452 450 453 $(BLD)/sorted-doc.$(O) : \ 451 $(SRC)/sorted-doc.c 454 $(SRC)/sorted-doc.c \ 455 $(EMACS_ROOT)/src/s/ms-w32.h \ 456 $(EMACS_ROOT)/src/m/intel386.h \ 457 $(EMACS_ROOT)/src/config.h \ 452 458 453 459 $(BLD)/tcp.$(O) : \ … … 462 468 $(EMACS_ROOT)/src/m/intel386.h \ 463 469 $(EMACS_ROOT)/lib-src/../src/config.h 464 465 $(BLD)/yow.$(O) : \466 $(SRC)/yow.c \467 $(EMACS_ROOT)/lib-src/../src/paths.h
