/[emacs]/emacs/lib-src/makefile.w32-in
ViewVC logotype

Diff of /emacs/lib-src/makefile.w32-in

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 2.25.2.1 by handa, Fri Apr 16 12:49:44 2004 UTC revision 2.25.2.2 by miles, Mon Jun 28 07:28:21 2004 UTC
# Line 1  Line 1 
1  #  Makefile for GNU Emacs on the Microsoft W32 API.  #  -*- Makefile -*- for GNU Emacs on the Microsoft W32 API.
2  #  Copyright (c) 2000-2001 Free Software Foundation, Inc.  #  Copyright (c) 2000-2001, 2004 Free Software Foundation, Inc.
3  #  #
4  #  This file is part of GNU Emacs.  #  This file is part of GNU Emacs.
5  #  #
# Line 126  $(BLD)/ctags.$(O): ctags.c Line 126  $(BLD)/ctags.$(O): ctags.c
126  #  #
127  # From ..\src\makefile.nt.  # From ..\src\makefile.nt.
128  #  #
129  obj = abbrev.c alloc.c alloca.c buffer.c bytecode.c callint.c callproc.c casefiddle.c casetab.c category.c ccl.c charset.c cm.c cmds.c coding.c data.c dired.c dispnew.c doc.c doprnt.c editfns.c emacs.c eval.c fileio.c filelock.c filemode.c floatfns.c fns.c fontset.c frame.c fringe.c gmalloc.c indent.c insdel.c intervals.c keyboard.c keymap.c lastfile.c lread.c macros.c marker.c minibuf.c print.c process.c ralloc.c regex.c region-cache.c scroll.c search.c sound.c strftime.c syntax.c sysdep.c term.c termcap.c textprop.c tparam.c undo.c unexw32.c vm-limit.c w32.c w32console.c w32fns.c w32heap.c w32inevt.c w32menu.c w32proc.c w32reg.c w32select.c w32term.c w32xfns.c window.c xdisp.c xfaces.c xfaces.c  obj = abbrev.c alloc.c alloca.c buffer.c bytecode.c callint.c callproc.c casefiddle.c casetab.c category.c ccl.c charset.c cm.c cmds.c coding.c data.c dired.c dispnew.c doc.c doprnt.c editfns.c emacs.c eval.c fileio.c filelock.c filemode.c floatfns.c fns.c fontset.c frame.c fringe.c gmalloc.c image.c indent.c insdel.c intervals.c keyboard.c keymap.c lastfile.c lread.c macros.c marker.c minibuf.c print.c process.c ralloc.c regex.c region-cache.c scroll.c search.c sound.c strftime.c syntax.c sysdep.c term.c termcap.c textprop.c tparam.c undo.c unexw32.c vm-limit.c w32.c w32console.c w32fns.c w32heap.c w32inevt.c w32menu.c w32proc.c w32reg.c w32select.c w32term.c w32xfns.c window.c xdisp.c xfaces.c xfaces.c
130  #  #
131  # These are the lisp files that are loaded up in loadup.el  # These are the lisp files that are loaded up in loadup.el
132  #  #
# Line 139  WINNT_SUPPORT = $(lispsource)ls-lisp.elc Line 139  WINNT_SUPPORT = $(lispsource)ls-lisp.elc
139  MSDOS_SUPPORT = $(lispsource)dos-fns.elc $(lispsource)dos-vars.elc $(lispsource)international/ccl.elc $(lispsource)international/codepage.elc  MSDOS_SUPPORT = $(lispsource)dos-fns.elc $(lispsource)dos-vars.elc $(lispsource)international/ccl.elc $(lispsource)international/codepage.elc
140  VMS_SUPPORT = $(lispsource)vmsproc.elc $(lispsource)vms-patch.elc  VMS_SUPPORT = $(lispsource)vmsproc.elc $(lispsource)vms-patch.elc
141    
142  lisp= \  lisp1= \
143          $(lispsource)abbrev.elc \          $(lispsource)abbrev.elc \
144          $(lispsource)buff-menu.elc \          $(lispsource)buff-menu.elc \
145          $(lispsource)button.elc \          $(lispsource)button.elc \
# Line 178  lisp= \ Line 178  lisp= \
178          $(lispsource)international/latin-5.el \          $(lispsource)international/latin-5.el \
179          $(lispsource)international/latin-8.el \          $(lispsource)international/latin-8.el \
180          $(lispsource)international/latin-9.el \          $(lispsource)international/latin-9.el \
181          $(lispsource)case-table.elc \          $(lispsource)case-table.elc
182    
183    lisp2 = \
184          $(lispsource)language/chinese.elc \          $(lispsource)language/chinese.elc \
185          $(lispsource)language/cyrillic.elc \          $(lispsource)language/cyrillic.elc \
186          $(lispsource)language/indian.elc \          $(lispsource)language/indian.elc \
# Line 228  DOC          = DOC Line 230  DOC          = DOC
230  $(DOC):         make-docfile  $(DOC):         make-docfile
231                  - $(DEL) $(DOC)                  - $(DEL) $(DOC)
232                  "$(THISDIR)/$(BLD)/make-docfile" -o $(DOC) -d ../src $(obj)                  "$(THISDIR)/$(BLD)/make-docfile" -o $(DOC) -d ../src $(obj)
233                  "$(THISDIR)/$(BLD)/make-docfile" -a $(DOC) -d ../src $(lisp)                  "$(THISDIR)/$(BLD)/make-docfile" -a $(DOC) -d ../src $(lisp1)
234                    "$(THISDIR)/$(BLD)/make-docfile" -a $(DOC) -d ../src $(lisp2)
235                  $(CP) $(DOC) ../etc/DOC-X                  $(CP) $(DOC) ../etc/DOC-X
236                  - mkdir "../src/$(OBJDIR)"                  - mkdir "../src/$(OBJDIR)"
237                  - mkdir "../src/$(OBJDIR)/etc"                  - mkdir "../src/$(OBJDIR)/etc"
# Line 422  $(BLD)/timer.$(O) : \ Line 425  $(BLD)/timer.$(O) : \
425  $(BLD)/yow.$(O) : \  $(BLD)/yow.$(O) : \
426          $(SRC)/yow.c \          $(SRC)/yow.c \
427          $(EMACS_ROOT)/lib-src/../src/paths.h          $(EMACS_ROOT)/lib-src/../src/paths.h
   
 # arch-tag: c051bc02-a6de-474b-889a-27f7b2fbbcea  

Legend:
Removed from v.2.25.2.1  
changed lines
  Added in v.2.25.2.2

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26