IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
May 12, 2004, 8:06:34 PM (22 years ago)
Author:
gusciora
Message:

I am trying to get our Makefiles to work correctly. In order to do so, I
need to do a fresh check-out. This check-in might break things.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/Makefile

    r651 r657  
    33##  Makefile:  psLib
    44##
    5 ##  $Revision: 1.9 $  $Name: not supported by cvs2svn $
    6 ##  $Date: 2004-05-12 21:49:39 $
     5##  $Revision: 1.10 $  $Name: not supported by cvs2svn $
     6##  $Date: 2004-05-13 06:06:33 $
    77##
    88##  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    3232# Define the target to build
    3333
    34 ALLTARGETS = sysUtils collections
     34ALLTARGETS = sysUtils collections dataManip
    3535
    3636TARGET_DYNAMIC = libpslib.$(DLL)
     
    3939# Define the installation targets
    4040
    41 INSTALLTARGETS = installSysUtils installCollections
     41INSTALLTARGETS = installSysUtils installCollections installDataManip
    4242
    4343# Define the clean up targets
    4444
    45 CLEANTARGETS = cleanSysUtils cleanCollections
     45CLEANTARGETS = cleanSysUtils cleanCollections cleanDataManip
    4646
    4747# Define the distribution clean up targets
    4848
    49 DISTCLEANTARGETS = distcleanSysUtils distcleanCollections
     49DISTCLEANTARGETS = distcleanSysUtils distcleanCollections distcleanDataManip
    5050
    5151# Define PHONY target "all" which will make all necessary items
     
    6666        $(MAKE) --directory=collections all
    6767
     68dataManip:
     69        $(MAKE) --directory=dataManip all
     70
    6871
    6972## ADD ADDITIONAL PORTIONS OF PSLIB HERE
     
    7881        $(MAKE) --directory=collections install
    7982
     83installDataManip:
     84        $(MAKE) --directory=dataManip install
     85
    8086
    8187# Define PHONY target "cleanSysUtils" which will clean up the development
     
    8894        $(MAKE) --directory=collections clean
    8995
     96cleanDataManip:
     97        $(MAKE) --directory=dataManip clean
     98
    9099# Define PHONY target "distcleanSysUtils which will clean up the distribution
    91100# files related to system utilities
     
    96105distcleanCollections:
    97106        $(MAKE) --directory=collections distclean
     107
     108distcleanDataManip:
     109        $(MAKE) --directory=dataManip distclean
    98110
    99111
     
    156168
    157169# List of PHONY targets with make file
    158 .PHONY:  sysUtils collections
     170.PHONY:  sysUtils collections dataManip
Note: See TracChangeset for help on using the changeset viewer.