Changeset 590
- Timestamp:
- May 6, 2004, 8:50:37 AM (22 years ago)
- File:
-
- 1 edited
-
trunk/psLib/src/collections/Makefile (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/collections/Makefile
r577 r590 1 1 ############################################################################### 2 2 ## 3 ## Makefile: sysUtils3 ## Makefile: collections 4 4 ## 5 ## $Revision: 1. 5$ $Name: not supported by cvs2svn $6 ## $Date: 2004-05-0 5 20:42:11$5 ## $Revision: 1.6 $ $Name: not supported by cvs2svn $ 6 ## $Date: 2004-05-06 18:50:37 $ 7 7 ## 8 8 ## Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 18 18 # Define the two targets to be built 19 19 20 TARGET_STATIC = libps Collections.a21 TARGET_DYNAMIC = libps Collections.$(DLL)20 TARGET_STATIC = libpslib.a 21 TARGET_DYNAMIC = libpslib.$(DLL) 22 22 23 23 # Include the make global definitions for the project … … 37 37 # Define PHONY target "all" which will make all the necessary items 38 38 39 all: $(TARGET_STATIC) $(TARGET_DYNAMIC)39 all: $(TARGET_STATIC) 40 40 41 41 # Rule to make static library 42 42 43 libps Collections.a: $(SRC_OBJS)43 libpslib.a: $(SRC_OBJS) 44 44 # The ar option -r is to add/replace object and -s is to create 45 45 # a symbol table in the archive … … 48 48 # Rule to make dynamic library 49 49 50 libps Collections.$(DLL): $(SRC_OBJS)51 $(CC) $(LDFLAGS_DLL) $(SRC_OBJS) -o ../$@ 50 libpslib.$(DLL): $(SRC_OBJS) 51 $(CC) $(LDFLAGS_DLL) $(SRC_OBJS) -o ../$@ 52 52 53 53 # Define PHONY target "install" which will install necessary files
Note:
See TracChangeset
for help on using the changeset viewer.
