IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 877


Ignore:
Timestamp:
Jun 4, 2004, 1:49:14 PM (22 years ago)
Author:
desonia
Message:

various enhancements (automatic dependency creation, etc.)

File:
1 edited

Legend:

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

    r857 r877  
    33##  Makefile:   test/collections
    44##
    5 ##  $Revision: 1.9 $  $Name: not supported by cvs2svn $
    6 ##  $Date: 2004-06-04 03:13:37 $
     5##  $Revision: 1.10 $  $Name: not supported by cvs2svn $
     6##  $Date: 2004-06-04 23:49:14 $
    77##
    88##  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    2929         tst_psSort_03   \
    3030         tst_psSort_04   \
    31          tst_psImage
     31         tst_psImage     \
     32         tst_psDlist
     33
     34OBJS = $(addsuffix .o,$(TARGET))
    3235
    3336all: $(TARGET)
    3437
    35 tst_psVector_01: tst_psVector_01.o
    36 tst_psVector_02: tst_psVector_02.o
    37 tst_psVector_03: tst_psVector_03.o
    38 tst_psBitSet_01: tst_psBitSet_01.o
    39 tst_psBitSet_02: tst_psBitSet_02.o
    40 tst_psBitSet_03: tst_psBitSet_03.o
    41 tst_psBitSet_04: tst_psBitSet_04.o
    42 tst_psBitSet_05: tst_psBitSet_05.o
    43 tst_psBitSet_06: tst_psBitSet_06.o
    44 tst_psSort_01: tst_psSort_01.o
    45 tst_psSort_02: tst_psSort_02.o
    46 tst_psSort_03: tst_psSort_03.o
    47 tst_psSort_04: tst_psSort_04.o
    48 tst_psImage: tst_psImage.o
     38include $(OBJS:.o=.d)
    4939
    5040clean:
     
    5343
    5444%.o : %.i
    55         $(CC) $(CFLAGS) $(CPPFLAGS) -I$(PSLIB_INCL_DIR) -c -o $@ $<
     45        $(CC) $(CFLAGS) -I$(PSLIB_INCL_DIR) -c -o $@ $<
    5646
    5747%.o : %.c
    58         $(CC) $(CFLAGS) $(CPPFLAGS) -I$(PSLIB_INCL_DIR) -c -o $@ $<
     48        $(CC) $(CFLAGS) -I$(PSLIB_INCL_DIR) -c -o $@ $<
    5949
    6050%   : %.o
     
    6858
    6959%.d: %.c
    70         $(CC) -M $(CFLAGS) $< > $@.tmp
     60        $(CC) -M $(CFLAGS) -I$(PSLIB_INCL_DIR) $< > $@.tmp
    7161        sed 's/\($*\)\.o[ :]*/\1.o $@ : /g' $@.tmp > $@
    7262        $(RM) -f $@.tmp
Note: See TracChangeset for help on using the changeset viewer.