qemacs-commit
[Top][All Lists]
Advanced

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

[Qemacs-commit] qemacs Makefile configure


From: Charlie Gordon
Subject: [Qemacs-commit] qemacs Makefile configure
Date: Sun, 7 May 2017 02:08:32 -0400 (EDT)

CVSROOT:        /sources/qemacs
Module name:    qemacs
Changes by:     Charlie Gordon <chqrlie>        17/05/07 02:08:32

Modified files:
        .              : Makefile configure 

Log message:
        build: use target specific size utility via SIZE configuration variable 
(F.Revol)

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/qemacs/Makefile?cvsroot=qemacs&r1=1.98&r2=1.99
http://cvs.savannah.gnu.org/viewcvs/qemacs/configure?cvsroot=qemacs&r1=1.28&r2=1.29

Patches:
Index: Makefile
===================================================================
RCS file: /sources/qemacs/qemacs/Makefile,v
retrieving revision 1.98
retrieving revision 1.99
diff -u -b -r1.98 -r1.99
--- Makefile    27 Apr 2017 23:04:10 -0000      1.98
+++ Makefile    7 May 2017 06:08:32 -0000       1.99
@@ -229,7 +229,7 @@
        cp $< $@
        -$(STRIP) $@
        @ls -l $@
-       @echo `size address@hidden `wc -c address@hidden qe $(OPTIONS) \
+       @echo `$(SIZE) address@hidden `wc -c address@hidden qe $(OPTIONS) \
                | cut -d ' ' -f 7-10,13,15-40 >> STATS
 
 #
@@ -244,7 +244,7 @@
        cp $< $@
        -$(STRIP) $@
        @ls -l $@
-       @echo `size address@hidden `wc -c address@hidden xqe $(OPTIONS) \
+       @echo `$(SIZE) address@hidden `wc -c address@hidden xqe $(OPTIONS) \
                | cut -d ' ' -f 7-10,13,15-40 >> STATS
 
 #
@@ -259,7 +259,7 @@
        cp $< $@
        -$(STRIP) $@
        @ls -l $@
-       @echo `size address@hidden `wc -c address@hidden tqe $(OPTIONS) \
+       @echo `$(SIZE) address@hidden `wc -c address@hidden tqe $(OPTIONS) \
                | cut -d ' ' -f 7-10,13,15-40 >> STATS
 
 t1qe_g$(EXE): tqe.c $(TSRCS) Makefile
@@ -271,7 +271,7 @@
        cp $< $@
        -$(STRIP) $@
        @ls -l $@
-       @echo `size address@hidden `wc -c address@hidden t1qe $(OPTIONS) \
+       @echo `$(SIZE) address@hidden `wc -c address@hidden t1qe $(OPTIONS) \
                | cut -d ' ' -f 7-10,13,15-40 >> STATS
 
 ffplay$(EXE): qe$(EXE) Makefile

Index: configure
===================================================================
RCS file: /sources/qemacs/qemacs/configure,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -b -r1.28 -r1.29
--- configure   12 Apr 2017 07:33:20 -0000      1.28
+++ configure   7 May 2017 06:08:32 -0000       1.29
@@ -28,6 +28,7 @@
 host_cc="gcc"
 ar="ar"
 make="make"
+size="size"
 strip="strip"
 strip_args="-s -R .comment -R .note"
 cpu=`uname -m`
@@ -399,6 +400,7 @@
 
 cc="${cross_prefix}${cc}"
 ar="${cross_prefix}${ar}"
+size="${cross_prefix}${size}"
 strip="${cross_prefix}${strip}"
 
 # ---
@@ -527,6 +529,7 @@
 echo "GCC_MAJOR=$gcc_major" >> $TMPMAK
 echo "HOST_CC=$host_cc" >> $TMPMAK
 echo "AR=$ar" >> $TMPMAK
+echo "SIZE=$size" >> $TMPMAK
 echo "STRIP=$strip $strip_args" >> $TMPMAK
 echo "INSTALL=install" >> $TMPMAK
 echo "CFLAGS=$CFLAGS" >> $TMPMAK



reply via email to

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