IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Feb 19, 2007, 11:05:00 AM (19 years ago)
Author:
eugene
Message:

configure cleanups:

  • moved some functions to config.tools
  • added layer in configure to catch CC="... .." options
  • interpret env CC or CC= options
  • moved ranlib setting to configure.tcsh
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Ohana/Configure.in

    r11122 r11888  
    11# Configure file for Ohana Package
    2 #
    3 # this is the location of the package
    4 # change this to match your location of the source
     2# the values of the form @WORD@ are filled in by configure
     3
     4# location of the package and architecture
    55ROOT    = @ROOTDIR@
    66ARCH    = @ARCHVAL@
    77
    88# destination directories:
    9 # these are the installation directories.
    10 # if you use a different toplevel directory than $(ROOT), you might
    11 # need to copy the include files in $(ROOT)/include by hand to the destination
    12 # LBIN  = PREFIX/bin/$(ARCH)
    13 
    149DESTBIN  = @BINDIR@
    1510DESTINC  = @INCDIR@
     
    1813DESTDATA = @DATADIR@
    1914
    20 # prefered C compiler
    21 # CC = gcc -g -DOHANA_MEMORY -Wall -Werror
    22 CC = gcc @OPTFLAGS@
    23 INCDIRS = @INCDIRS@
    24 LIBDIRS = @LIBDIRS@
     15# C compiler options
     16CC       = @CC@
     17CFLAGS   = @CFLAGS@
     18CPPFLAGS = @CPPFLAGS@
     19LDFLAGS  = @LDFLAGS@
     20
     21# flags for external dependencies
     22INCDIRS  = @INCDIRS@
     23LIBDIRS  = @LIBDIRS@
    2524LIBFLAGS = @LIBFLAGS@
    2625
    2726# select the appropriate version of ranlib
    28 RANLIB-sid = ranlib
    29 RANLIB-sol = touch
    30 RANLIB-linux = ranlib
    31 RANLIB-lin64 = ranlib
    32 RANLIB-linrh = ranlib
    33 RANLIB = $(RANLIB-$(ARCH))
     27RANLIB = @RANLIB@
Note: See TracChangeset for help on using the changeset viewer.