IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 579


Ignore:
Timestamp:
May 5, 2004, 10:46:25 AM (22 years ago)
Author:
harman
Message:

Added collections directory to Makefile

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/Makefile

    r524 r579  
    33##  Makefile:  psLib
    44##
    5 ##  $Revision: 1.5 $  $Name: not supported by cvs2svn $
    6 ##  $Date: 2004-04-27 02:16:17 $
     5##  $Revision: 1.6 $  $Name: not supported by cvs2svn $
     6##  $Date: 2004-05-05 20:46:25 $
    77##
    88##  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    3232# Define the target to build
    3333
    34 ALLTARGETS = sysUtils
     34ALLTARGETS = sysUtils collections
    3535
    3636# Define the installation targets
    3737
    38 INSTALLTARGETS = installSysUtils
     38INSTALLTARGETS = installSysUtils installCollections
    3939
    4040# Define the clean up targets
    4141
    42 CLEANTARGETS = cleanSysUtils
     42CLEANTARGETS = cleanSysUtils cleanCollections
    4343
    4444# Define the distribution clean up targets
    4545
    46 DISTCLEANTARGETS = distcleanSysUtils
     46DISTCLEANTARGETS = distcleanSysUtils distcleanCollections
    4747
    4848# Define PHONY target "all" which will make all necessary items
     
    5959        $(MAKE) --directory=sysUtils all
    6060
     61collections:
     62        $(MAKE) --directory=collections all
     63
     64
    6165## ADD ADDITIONAL PORTIONS OF PSLIB HERE
    6266
     
    6771        $(MAKE) --directory=sysUtils install
    6872
     73installCollections:
     74        $(MAKE) --directory=collections install
     75
     76
    6977# Define PHONY target "cleanSysUtils" which will clean up the development
    7078# area for system utilites
     
    7381        $(MAKE) --directory=sysUtils clean
    7482
     83cleanCollections:
     84        $(MAKE) --directory=collections clean
     85
    7586# Define PHONY target "distcleanSysUtils which will clean up the distribution
    7687# files related to system utilities
     
    7889distcleanSysUtils:
    7990        $(MAKE) --directory=sysUtils distclean
     91       
     92distcleanCollections:
     93        $(MAKE) --directory=collections distclean
     94
    8095
    8196# Rule to make include directory if needed
     
    131146
    132147# List of PHONY targets with make file
    133 .PHONY:  sysUtils
     148.PHONY:  sysUtils collections
Note: See TracChangeset for help on using the changeset viewer.