Changeset d79763472671a56e2622ce127d959c34b80a45a7

Show
Ignore:
Timestamp:
06/18/00 10:14:25 (8 years ago)
Author:
Benoit Steiner <benny@videolan.org>
git-committer:
Benoit Steiner <benny@videolan.org> 961316065 +0000
git-parent:

[3d1104112bebfdd6f1d3201e03da01db54c93bd6]

git-author:
Benoit Steiner <benny@videolan.org> 961316065 +0000
Message:

Le Makefile genere ne gerait pas correctement le mode debug=1

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • Makefile.in

    r08dcf8d rd797634  
    9797 
    9898# Optimizations : don't compile debug versions with them 
     99ifeq ($(DEBUG),0) 
    99100CCFLAGS += -O6 
    100101CCFLAGS += -ffast-math -funroll-loops -fargument-noalias-global 
     
    127128endif 
    128129 
     130# End of optimizations 
     131endif 
     132 
    129133# 
    130134# C compiler flags: dependancies 
     
    144148# 
    145149 
    146 # Debugging support 
    147 ifeq ($(DEBUG),1) 
    148 CFLAGS += -g 
     150# Debugging and profiling support 
     151ifneq ($(DEBUG),0) 
    149152CFLAGS += -pg 
    150153endif