Changeset 126 for ttyvaders


Ignore:
Timestamp:
Nov 10, 2003, 3:19:21 PM (19 years ago)
Author:
Sam Hocevar
Message:
  • configure.ac: + Moved optimization flags and warning triggers here. + Updated the snapshot timestamp.
Location:
ttyvaders/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • ttyvaders/trunk/configure.ac

    r118 r126  
    11# $Id$
    22
    3 AC_INIT(ttyvaders,0.0cvs-20021223)
     3AC_INIT(ttyvaders,0.0cvs-20031110)
    44
    55AC_PREREQ(2.50)
     
    88AC_CANONICAL_SYSTEM
    99
    10 AM_INIT_AUTOMAKE(ttyvaders,0.0cvs-20021223)
     10AM_INIT_AUTOMAKE(ttyvaders,0.0cvs-20031110)
    1111AM_CONFIG_HEADER(config.h)
    1212
     
    3737AM_CONDITIONAL(USE_NCURSES, ${USE_NCURSES})
    3838
     39# Optimizations
     40CFLAGS="${CFLAGS} -g -O2 -fno-strength-reduce -fomit-frame-pointer"
     41# Code qui fait des warnings == code de porc == deux baffes dans ta gueule
     42CFLAGS="${CFLAGS} -Wall -Wpointer-arith -Wcast-align -Wcast-qual -Wstrict-prototypes -Wshadow -Waggregate-return -Wmissing-prototypes -Wnested-externs"
     43
    3944AC_OUTPUT([
    4045  Makefile
  • ttyvaders/trunk/libee/Makefile.am

    r116 r126  
    22# Automake targets and declarations for libee
    33###############################################################################
    4 
    5 AM_CFLAGS = -g -O2 -fno-strength-reduce -fomit-frame-pointer
    6 
    7 # Code qui fait des warnings == code de porc == deux baffes dans ta gueule
    8 AM_CFLAGS += -Wall -Wpointer-arith -Wcast-align -Wcast-qual -Wstrict-prototypes -Wshadow -Waggregate-return -Wmissing-prototypes -Wnested-externs
    94
    105lib_LIBRARIES = libee.a
  • ttyvaders/trunk/src/Makefile.am

    r112 r126  
    22# Automake targets and declarations for ttyvaders
    33###############################################################################
    4 
    5 AM_CFLAGS = -g -O2 -fno-strength-reduce -fomit-frame-pointer
    6 
    7 # Code qui fait des warnings == code de porc == deux baffes dans ta gueule
    8 AM_CFLAGS += -Wall -Wpointer-arith -Wcast-align -Wcast-qual -Wstrict-prototypes -Wshadow -Waggregate-return -Wmissing-prototypes -Wnested-externs
    94
    105if USE_SLANG
  • ttyvaders/trunk/test/Makefile.am

    r112 r126  
    22# Automake targets and declarations for libee tests
    33###############################################################################
    4 
    5 AM_CFLAGS = -g -O2 -fno-strength-reduce -fomit-frame-pointer
    6 
    7 # Code qui fait des warnings == code de porc == deux baffes dans ta gueule
    8 AM_CFLAGS += -Wall -Wpointer-arith -Wcast-align -Wcast-qual -Wstrict-prototypes -Wshadow -Waggregate-return -Wmissing-prototypes -Wnested-externs
    94
    105if USE_SLANG
Note: See TracChangeset for help on using the changeset viewer.