emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r108958: lib-src/makefile.w32-in (ALL


From: Juanma Barranquero
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r108958: lib-src/makefile.w32-in (ALL): Add profile.exe.
Date: Mon, 09 Jul 2012 02:59:38 +0200
User-agent: Bazaar (2.5.0)

------------------------------------------------------------
revno: 108958
committer: Juanma Barranquero <address@hidden>
branch nick: trunk
timestamp: Mon 2012-07-09 02:59:38 +0200
message:
  lib-src/makefile.w32-in (ALL): Add profile.exe.
  (PROFILEOBJS): New macro.
  ($(BLD)/profile.exe): New target.
  (install): Copy profile.exe.
  ($(BLD)/alloca.$(O), $(BLD)/tcp.$(O)): Remove, obsolete.
modified:
  lib-src/ChangeLog
  lib-src/makefile.w32-in
=== modified file 'lib-src/ChangeLog'
--- a/lib-src/ChangeLog 2012-07-07 00:20:56 +0000
+++ b/lib-src/ChangeLog 2012-07-09 00:59:38 +0000
@@ -1,3 +1,11 @@
+2012-07-09  Juanma Barranquero  <address@hidden>
+
+       * makefile.w32-in (ALL): Add profile.exe.
+       (PROFILEOBJS): New macro.
+       ($(BLD)/profile.exe): New target.
+       (install): Copy profile.exe.
+       ($(BLD)/alloca.$(O), $(BLD)/tcp.$(O)): Remove, obsolete.
+
 2012-07-07  Juanma Barranquero  <address@hidden>
 
        * makefile.w32-in ($(BLD)/ctags.$(O), $(BLD)/etags.$(O)):

=== modified file 'lib-src/makefile.w32-in'
--- a/lib-src/makefile.w32-in   2012-07-07 00:20:56 +0000
+++ b/lib-src/makefile.w32-in   2012-07-09 00:59:38 +0000
@@ -19,7 +19,7 @@
 
 ALL = $(BLD)/test-distrib.exe $(BLD)/make-docfile.exe $(BLD)/hexl.exe\
  $(BLD)/ctags.exe $(BLD)/etags.exe $(BLD)/movemail.exe $(BLD)/ebrowse.exe\
- $(BLD)/emacsclient.exe $(BLD)/emacsclientw.exe
+ $(BLD)/emacsclient.exe $(BLD)/emacsclientw.exe $(BLD)/profile.exe
 
 .PHONY: make-docfile
 
@@ -110,6 +110,12 @@
 $(BLD)/ctags.$(O): ctags.c
                $(CC) $(CFLAGS) $(CTAGS_CFLAGS) $(CC_OUT)$@ ctags.c
 
+PROFILEOBJS    = $(BLD)/profile.$(O) \
+                 ../lib/$(BLD)/libgnu.$(A) \
+                 $(BLD)/ntlib.$(O)
+$(BLD)/profile.exe:    $(PROFILEOBJS)
+               $(LINK) $(LINK_OUT)$@ $(LINK_FLAGS) $(PROFILEOBJS) $(LIBS)
+
 #
 # From ..\src\Makefile.in
 # It doesn't matter if the real name is *.obj for the files in this list,
@@ -306,6 +312,7 @@
                $(CP) $(BLD)/movemail.exe $(INSTALL_DIR)/bin
                $(CP) $(BLD)/emacsclient.exe $(INSTALL_DIR)/bin
                $(CP) $(BLD)/emacsclientw.exe $(INSTALL_DIR)/bin
+               $(CP) $(BLD)/profile.exe $(INSTALL_DIR)/bin
                - mkdir "$(INSTALL_DIR)/etc"
                $(CP) $(DOC) $(INSTALL_DIR)/etc
 
@@ -350,12 +357,6 @@
 EMACS_ROOT     = ..
 SRC            = .
 
-$(BLD)/alloca.$(O) : \
-       $(SRC)/alloca.c \
-       $(EMACS_ROOT)/src/s/ms-w32.h \
-       $(EMACS_ROOT)/src/config.h \
-       $(EMACS_ROOT)/src/blockinput.h
-
 $(BLD)/ctags.$(O) : \
        $(SRC)/ctags.c \
        $(EMACS_ROOT)/nt/inc/sys/param.h \
@@ -424,9 +425,6 @@
        $(EMACS_ROOT)/lib-src/../src/config.h \
        $(EMACS_ROOT)/lib-src/../src/systime.h
 
-$(BLD)/tcp.$(O) : \
-       $(SRC)/tcp.c
-
 $(BLD)/test-distrib.$(O) : \
        $(SRC)/test-distrib.c
 


reply via email to

[Prev in Thread] Current Thread [Next in Thread]