IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Nov 21, 2008, 1:33:36 PM (17 years ago)
Author:
bills
Message:

Added a program to replace streaks and to compare two image files
(comparsion not complete yet)
Split streaksremove.c up so to make it less wieldy and to facilitate
reusing the io functions.

Location:
trunk/magic/remove/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/magic/remove/src

    • Property svn:ignore
      •  

        old new  
        11streaksremove
         2streaksreplace
         3streakscompare
  • trunk/magic/remove/src/Makefile.simple

    r20580 r20816  
    11# skeleton Makefile for streaksremove
     2#
     3# The intent is that these programs may be built against an
     4# IPP installation outside the IPP build enviornment.
    25
    3 OBJECTS=    \
     6COMMON_OBJECTS = \
     7        streaksio.o \
     8        streaksutil.o
     9
     10REMOVE_OBJECTS=    \
     11    ${COMMON_OBJECTS} \
    412    streaksremove.o \
    513    streaksastrom.o \
     
    816    Line.o
    917
    10 CFLAGS=`psmodules-config --cflags` -g -std=gnu99
     18REPLACE_OBJECTS=    \
     19    ${COMMON_OBJECTS} \
     20    streaksreplace.o
     21
     22COMPARE_OBJECTS=    \
     23    ${COMMON_OBJECTS} \
     24    streakscompare.o
     25
     26OPTFLAGS= -g
     27CFLAGS=`psmodules-config --cflags` -std=gnu99 ${OPTFLAGS}
    1128LDFLAGS=`psmodules-config --libs`
    1229
    13 streaksremove:  ${OBJECTS}
     30PROGRAMS= streaksremove streaksreplace streakscompare
    1431
    15 install:        streaksremove
    16         cp streaksremove $(PSCONFDIR)/$(PSCONFIG)/bin
    17         chmod 755  $(PSCONFDIR)/$(PSCONFIG)/bin/streaksremove
     32all:    ${PROGRAMS}
     33
     34streaksremove:  ${REMOVE_OBJECTS}
     35
     36streaksreplace:  ${REPLACE_OBJECTS}
     37
     38streakscompare:  ${COMPARE_OBJECTS}
     39
     40install:        ${PROGRAMS}
     41        install -t  $(PSCONFDIR)/$(PSCONFIG)/bin streaksremove
     42        install -t  $(PSCONFDIR)/$(PSCONFIG)/bin streaksreplace
     43        install -t  $(PSCONFDIR)/$(PSCONFIG)/bin streakscompare
    1844
    1945clean:
    20         rm -f *.o streaksremove   
     46        rm -f *.o ${PROGRAMS}
    2147   
    2248
Note: See TracChangeset for help on using the changeset viewer.