IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 8396


Ignore:
Timestamp:
Aug 16, 2006, 2:48:32 PM (20 years ago)
Author:
Paul Price
Message:

Previous version of ppNorm doesn't fit in to the (now better understood) detrend workflow. Splitting it out into ppNormCalc and ppNormApply. This is the first installment, with ppNormCalc.

Location:
trunk/ppNorm
Files:
1 added
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/ppNorm/configure.ac

    r8031 r8396  
    2323)
    2424
    25 ppNorm_CFLAGS="-Wall -Werror -std=c99"
    26 ppNorm_LDFLAGS=""
     25ppNormCalc_CFLAGS="-Wall -Werror -std=c99"
     26ppNormCalc_LDFLAGS=""
    2727                                                                               
    2828dnl handle debug building
     
    4949  [AS_HELP_STRING(--enable-profile,enable compiler profiler information inclusion)],
    5050  [AC_MSG_RESULT(compile optimization enabled)
    51   ppNorm_CFLAGS="${ppNorm_CFLAGS} -g -pg"
    52   ppNorm_LDFLAGS="${ppNorm_LDFLAGS} -pg -Wl,--start-group -Wl,-Bstatic"]
     51  ppNormCalc_CFLAGS="${ppNormCalc_CFLAGS} -g -pg"
     52  ppNormCalc_LDFLAGS="${ppNormCalc_LDFLAGS} -pg -Wl,--start-group -Wl,-Bstatic"]
    5353  )
    5454   
    55 AC_SUBST([ppNorm_CFLAGS])
    56 AC_SUBST([ppNorm_LDFLAGS])
     55AC_SUBST([ppNormCalc_CFLAGS])
     56AC_SUBST([ppNormCalc_LDFLAGS])
    5757
    5858AC_CONFIG_FILES([
  • trunk/ppNorm/src/Makefile.am

    r8031 r8396  
    1 bin_PROGRAMS = ppNorm
     1bin_PROGRAMS = ppNormCalc
    22
    3 ppNorm_CFLAGS += $(PSMODULE_CFLAGS) $(PSLIB_CFLAGS)
    4 ppNorm_LDFLAGS += $(PSMODULE_LIBS) $(PSLIB_LIBS) -Wl,-Bdynamic
     3ppNormCalc_CFLAGS += $(PSMODULE_CFLAGS) $(PSLIB_CFLAGS)
     4ppNormCalc_LDFLAGS += $(PSMODULE_LIBS) $(PSLIB_LIBS) -Wl,-Bdynamic
    55
    6 ppNorm_SOURCES =                \
    7         ppNorm.c                \
    8         ppNormData.c            \
    9         ppNormLoop.c            \
    10         ppNormSetup.c
     6ppNormCalc_SOURCES =            \
     7        ppNormCalc.c
    118
    12 noinst_HEADERS =                \
    13         ppNormData.h            \
    14         ppNorm.h
     9noinst_HEADERS =
    1510
    1611CLEANFILES = *~
Note: See TracChangeset for help on using the changeset viewer.