Changeset 596 for trunk/psLib/src/Makefile
- Timestamp:
- May 6, 2004, 1:25:19 PM (22 years ago)
- File:
-
- 1 edited
-
trunk/psLib/src/Makefile (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/Makefile
r579 r596 3 3 ## Makefile: psLib 4 4 ## 5 ## $Revision: 1. 6$ $Name: not supported by cvs2svn $6 ## $Date: 2004-05-0 5 20:46:25$5 ## $Revision: 1.7 $ $Name: not supported by cvs2svn $ 6 ## $Date: 2004-05-06 23:25:19 $ 7 7 ## 8 8 ## Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 34 34 ALLTARGETS = sysUtils collections 35 35 36 TARGET_DYNAMIC = libpslib.$(DLL) 37 TARGET_STATIC = libpslib.a 38 36 39 # Define the installation targets 37 40 … … 48 51 # Define PHONY target "all" which will make all necessary items 49 52 50 all: $(ALLTARGETS) 53 all: $(ALLTARGETS) 54 $(BUILD_DYNAMIC1) $(TARGET_STATIC) $(BUILD_DYNAMIC2) $(TARGET_DYNAMIC) 51 55 @echo "" 52 56 @echo " ---- All targets built successfully $(VERSION) ----" … … 126 130 install: installdirs $(INSTALLTARGETS) docs 127 131 install *.h $(includedir) 132 install $(TARGET_STATIC) $(libexecdir) 133 install $(TARGET_DYNAMIC) $(libexecdir) 128 134 129 135 # Define PHONY target "clean" to clean up the development areas for … … 131 137 132 138 clean: $(CLEANTARGETS) 139 $(RM) -f $(TARGET_STATIC) 140 $(RM) -f $(TARGET_DYNAMIC) 133 141 134 142 # Define PHONY target "distclean" to clean up the distribution area for … … 136 144 137 145 distclean: $(DISTCLEANTARGETS) 146 $(RM) -f $(libexecdir)/$(TARGET_STATIC) 147 $(RM) -f $(libexecdir)/$(TARGET_DYNAMIC) 138 148 139 149 # Define PHONY target "docs" to generate the Doxygen files for psLib
Note:
See TracChangeset
for help on using the changeset viewer.
