[pisa-src] r1172 - in trunk: Makefile.am libpisa/Makefile.am pairing/Makefile.am pisacd/Makefile.am pisand/Makefile.am pisasd/Makefile.am test/Makefile.am

  • From: Thomas Jansen <mithi@xxxxxxxxx>
  • To: pisa-src@xxxxxxxxxxxxx
  • Date: Thu, 15 Oct 2009 15:48:43 +0200

Author: tjansen
Date: Thu Oct 15 15:48:43 2009
New Revision: 1172

Log:
Remove -g from CFLAGS.

Automake adds it for us, so we don't need to do it ourselves. Shortens a
typical gcc call from
gcc -DHAVE_CONFIG_H -I. -I../include     -g -O2 -Wall -g -MT cdmain.o -MD -MP 
-MF .deps/cdmain.Tpo -c -o cdmain.o cdmain.c
to
gcc -DHAVE_CONFIG_H -I. -I../include     -g -O2 -Wall -MT cdmain.o -MD -MP -MF 
.deps/cdmain.Tpo -c -o cdmain.o cdmain.c

Modified:
   trunk/Makefile.am
   trunk/libpisa/Makefile.am
   trunk/pairing/Makefile.am
   trunk/pisacd/Makefile.am
   trunk/pisand/Makefile.am
   trunk/pisasd/Makefile.am
   trunk/test/Makefile.am

Modified: trunk/Makefile.am
==============================================================================
--- trunk/Makefile.am   Thu Oct 15 15:45:11 2009        (r1171)
+++ trunk/Makefile.am   Thu Oct 15 15:48:43 2009        (r1172)
@@ -15,7 +15,7 @@
 EXTRA_DIST += tools/trigger-hipupdate.sh
 EXTRA_DIST += tools/tunnel/seteth1address
 
-CFLAGS += -Wall -g
+CFLAGS += -Wall
 
 sbin_PROGRAMS = pisabeacon/pisabeacon tools/iwlist_parser tools/msleep
 

Modified: trunk/libpisa/Makefile.am
==============================================================================
--- trunk/libpisa/Makefile.am   Thu Oct 15 15:45:11 2009        (r1171)
+++ trunk/libpisa/Makefile.am   Thu Oct 15 15:48:43 2009        (r1172)
@@ -12,4 +12,4 @@
 libpisa_la_SOURCES += log.c
 endif
 
-CFLAGS += -Wall -g
+CFLAGS += -Wall

Modified: trunk/pairing/Makefile.am
==============================================================================
--- trunk/pairing/Makefile.am   Thu Oct 15 15:45:11 2009        (r1171)
+++ trunk/pairing/Makefile.am   Thu Oct 15 15:48:43 2009        (r1172)
@@ -3,7 +3,7 @@
 #
 # Author: Kate Harrison harriska@xxxxxxxxxxxxx
 
-CFLAGS += -Wall -g     # add -pedantic if you want it to worry about your 
commenting style (and other stuff)
+CFLAGS += -Wall        # add -pedantic if you want it to worry about your 
commenting style (and other stuff)
 send_CFLAGS = -DSEND
 accept_CFLAGS = -DACCEPT
 bin_PROGRAMS = send accept passgen management

Modified: trunk/pisacd/Makefile.am
==============================================================================
--- trunk/pisacd/Makefile.am    Thu Oct 15 15:45:11 2009        (r1171)
+++ trunk/pisacd/Makefile.am    Thu Oct 15 15:48:43 2009        (r1172)
@@ -3,7 +3,7 @@
 #
 # Author: Dongsu Park <dpark1978@xxxxxxxxx>
 
-CFLAGS += -Wall -g
+CFLAGS += -Wall
 
 bin_PROGRAMS = pisacdconf
 sbin_PROGRAMS = pisacd

Modified: trunk/pisand/Makefile.am
==============================================================================
--- trunk/pisand/Makefile.am    Thu Oct 15 15:45:11 2009        (r1171)
+++ trunk/pisand/Makefile.am    Thu Oct 15 15:48:43 2009        (r1172)
@@ -3,7 +3,7 @@
 #
 # Author: Dongsu Park <dpark1978@xxxxxxxxx>
 
-CFLAGS += -Wall -g
+CFLAGS += -Wall
 
 sbin_PROGRAMS = pisand
 

Modified: trunk/pisasd/Makefile.am
==============================================================================
--- trunk/pisasd/Makefile.am    Thu Oct 15 15:45:11 2009        (r1171)
+++ trunk/pisasd/Makefile.am    Thu Oct 15 15:48:43 2009        (r1172)
@@ -3,7 +3,7 @@
 #
 # Author: Dongsu Park <dpark1978@xxxxxxxxx>
 
-CFLAGS += -Wall -g
+CFLAGS += -Wall
 
 bin_PROGRAMS = pisasdconf
 sbin_PROGRAMS = pisasd

Modified: trunk/test/Makefile.am
==============================================================================
--- trunk/test/Makefile.am      Thu Oct 15 15:45:11 2009        (r1171)
+++ trunk/test/Makefile.am      Thu Oct 15 15:48:43 2009        (r1172)
@@ -5,7 +5,7 @@
 
 EXTRA_DIST =
 
-CFLAGS += -Wall -g
+CFLAGS += -Wall
 
 INCLUDES = -I@PISA_PISACD_INCLUDES@
 INCLUDES += -I@PISA_PISAND_INCLUDES@

Other related posts:

  • » [pisa-src] r1172 - in trunk: Makefile.am libpisa/Makefile.am pairing/Makefile.am pisacd/Makefile.am pisand/Makefile.am pisasd/Makefile.am test/Makefile.am - Thomas Jansen