IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
May 25, 2004, 1:56:26 PM (22 years ago)
Author:
desonia
Message:

added the make rule for the install directories.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/test/Makefile

    r541 r781  
    33##  Makefile:   test
    44##
    5 ##  $Revision: 1.2 $  $Name: not supported by cvs2svn $
    6 ##  $Date: 2004-04-28 02:51:39 $
     5##  $Revision: 1.3 $  $Name: not supported by cvs2svn $
     6##  $Date: 2004-05-25 23:56:26 $
    77##
    88##  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    5151# Define PHONY target "install" which will install necessary files
    5252
    53 install: $(TARGET_STATIC) $(TARGET_DYNAMIC)
     53install: $(TARGET_STATIC) $(TARGET_DYNAMIC) $(includedir) $(libexecdir)
    5454        install *.h $(includedir)
    5555        install $(TARGET_STATIC) $(libexecdir)
     
    7272%.lint: %.c
    7373        splint +posixlib -exportlocal -realcompare $(INCLUDE_GLOBAL) $? > $@; cat $@
     74
     75# Rule to make include directory if needed
     76
     77$(includedir):
     78        mkdir -p $(includedir)
     79
     80# Rule to make lib directory if needed
     81
     82$(libexecdir):
     83        mkdir -p $(libexecdir)
     84
Note: See TracChangeset for help on using the changeset viewer.