IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 986


Ignore:
Timestamp:
Jun 10, 2004, 10:40:26 AM (22 years ago)
Author:
desonia
Message:

added dependency files to avoid false error when they are generated.

Location:
trunk/psLib/src
Files:
19 added
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/collections/Makefile

    r919 r986  
    33##  Makefile:   collections
    44##
    5 ##  $Revision: 1.19 $  $Name: not supported by cvs2svn $
    6 ##  $Date: 2004-06-08 19:08:40 $
     5##  $Revision: 1.20 $  $Name: not supported by cvs2svn $
     6##  $Date: 2004-06-10 20:40:26 $
    77##
    88##  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    6464clean:
    6565        @echo "    Deleting intermediate files for 'collections'"
    66         $(RM) $(SRC_OBJS) *.lint $(SRC_OBJS:.o=.d*) $(SRC_OBJS:.o=.i)
     66        $(RM) $(SRC_OBJS) *.lint $(SRC_OBJS:.o=.i)
    6767
    6868%.lint: %.c
     
    7676
    7777%.d: %.c
    78         $(CC) -M $(CFLAGS) $< > $@.tmp
     78        $(CC) -MM $(CFLAGS) $< > $@.tmp
    7979        sed 's/\($*\)\.o[ :]*/\1.o $@ : /g' $@.tmp > $@
    8080        $(RM) -f $@.tmp
  • trunk/psLib/src/dataManip/Makefile

    r818 r986  
    3737clean:
    3838        @echo "    Deleting intermediate files for 'sysUtils'"
    39         $(RM) $(SRC_OBJS) *.lint $(SRC_OBJS:.o=.d*)
     39        $(RM) $(SRC_OBJS) *.lint
    4040
    4141%.lint: %.c
     
    4343
    4444%.d: %.c
    45         $(CC) -M $(CFLAGS) $< > $@.tmp
     45        $(CC) -MM $(CFLAGS) $< > $@.tmp
    4646        sed 's/\($*\)\.o[ :]*/\1.o $@ : /g' $@.tmp > $@
    4747        $(RM) -f $@.tmp
  • trunk/psLib/src/image/psImage.c

    r938 r986  
    99 *  @author Ross Harman, MHPCC
    1010 *
    11  *  @version $Revision: 1.26 $ $Name: not supported by cvs2svn $
    12  *  @date $Date: 2004-06-08 23:56:34 $
     11 *  @version $Revision: 1.27 $ $Name: not supported by cvs2svn $
     12 *  @date $Date: 2004-06-10 20:40:26 $
    1313 *
    1414 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    22822282                    imageRow[col] /= overlayRow[col-col0]; \
    22832283                    break; \
     2284                case '=': \
     2285                    imageRow[col] = overlayRow[col-col0]; \
     2286                    break; \
    22842287                default: \
    22852288                    psError(__func__,"Unknown operation %s",op); \
     
    22872290                } \
    22882291            } \
    2289         }
     2292        } \
     2293        break;
    22902294
    22912295        psImageOverlayCase(U8);
  • trunk/psLib/src/mathtypes/psImage.c

    r938 r986  
    99 *  @author Ross Harman, MHPCC
    1010 *
    11  *  @version $Revision: 1.26 $ $Name: not supported by cvs2svn $
    12  *  @date $Date: 2004-06-08 23:56:34 $
     11 *  @version $Revision: 1.27 $ $Name: not supported by cvs2svn $
     12 *  @date $Date: 2004-06-10 20:40:26 $
    1313 *
    1414 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    22822282                    imageRow[col] /= overlayRow[col-col0]; \
    22832283                    break; \
     2284                case '=': \
     2285                    imageRow[col] = overlayRow[col-col0]; \
     2286                    break; \
    22842287                default: \
    22852288                    psError(__func__,"Unknown operation %s",op); \
     
    22872290                } \
    22882291            } \
    2289         }
     2292        } \
     2293        break;
    22902294
    22912295        psImageOverlayCase(U8);
  • trunk/psLib/src/sysUtils/Makefile

    r886 r986  
    33##  Makefile:   sysUtils
    44##
    5 ##  $Revision: 1.15 $  $Name: not supported by cvs2svn $
    6 ##  $Date: 2004-06-05 19:12:51 $
     5##  $Revision: 1.16 $  $Name: not supported by cvs2svn $
     6##  $Date: 2004-06-10 20:40:26 $
    77##
    88##  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    6363clean:
    6464        @echo "    Deleting intermediate files for 'sysUtils'"
    65         $(RM) $(SRC_OBJS) *.lint $(SRC_OBJS:.o=.d*)
     65        $(RM) $(SRC_OBJS) *.lint
    6666
    6767%.lint: %.c
     
    6969
    7070%.d: %.c
    71         $(CC) -M $(CFLAGS) $< > $@.tmp
     71        $(CC) -MM $(CFLAGS) $< > $@.tmp
    7272        sed 's/\($*\)\.o[ :]*/\1.o $@ : /g' $@.tmp > $@
    73         $(RM) -f $@.$$$$
     73        $(RM) -f $@.tmp
    7474
    7575include $(SRC_OBJS:.o=.d)
Note: See TracChangeset for help on using the changeset viewer.