Changeset 1007
- Timestamp:
- Jun 11, 2004, 10:36:04 AM (22 years ago)
- Location:
- trunk/psLib/test
- Files:
-
- 4 edited
-
Makefile (modified) (4 diffs)
-
collections/Makefile (modified) (2 diffs)
-
dataManip/Makefile (modified) (2 diffs)
-
sysUtils/Makefile (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/test/Makefile
r781 r1007 3 3 ## Makefile: test 4 4 ## 5 ## $Revision: 1. 3$ $Name: not supported by cvs2svn $6 ## $Date: 2004-0 5-25 23:56:26$5 ## $Revision: 1.4 $ $Name: not supported by cvs2svn $ 6 ## $Date: 2004-06-11 20:36:04 $ 7 7 ## 8 8 ## Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 51 51 # Define PHONY target "install" which will install necessary files 52 52 53 install: $(TARGET_STATIC) $(TARGET_DYNAMIC) $(includedir) $(libexecdir) 53 install: $(TARGET_STATIC) $(TARGET_DYNAMIC) $(includedir) $(libexecdir) $(testbindir) 54 54 install *.h $(includedir) 55 55 install $(TARGET_STATIC) $(libexecdir) 56 56 install $(TARGET_DYNAMIC) $(libexecdir) 57 install FullUnitTest runTest $(testbindir) 58 $(MAKE) --directory=collections install 59 $(MAKE) --directory=dataManip install 60 $(MAKE) --directory=sysUtils install 57 61 58 62 # Define PHONY target "distclean" which will cleanup the distribution 59 63 60 64 distclean: clean 65 $(MAKE) --directory=collections distclean 66 $(MAKE) --directory=dataManip distclean 67 $(MAKE) --directory=sysUtils distclean 61 68 $(RM) $(TARGET_STATIC) 62 69 $(RM) $(TARGET_DYNAMIC) … … 67 74 68 75 clean: 76 $(MAKE) --directory=collections clean 77 $(MAKE) --directory=dataManip clean 78 $(MAKE) --directory=sysUtils clean 69 79 @echo " Deleting intermediate files for 'test'" 70 80 $(RM) $(SRC_OBJS) *.lint 71 81 72 82 %.lint: %.c 73 splint +posixlib -exportlocal -realcompare $(INCLUDE_GLOBAL) $? > $@; cat $@ 83 splint +posixlib -exportlocal -realcompare $(INCLUDE_GLOBAL) $? > $@; cat $@ 74 84 75 85 # Rule to make include directory if needed … … 83 93 mkdir -p $(libexecdir) 84 94 95 $(testbindir): 96 mkdir -p $(testbindir) 97 -
trunk/psLib/test/collections/Makefile
r1004 r1007 3 3 ## Makefile: test/collections 4 4 ## 5 ## $Revision: 1.1 3$ $Name: not supported by cvs2svn $6 ## $Date: 2004-06-11 19:38:58$5 ## $Revision: 1.14 $ $Name: not supported by cvs2svn $ 6 ## $Date: 2004-06-11 20:36:04 $ 7 7 ## 8 8 ## Copyright 2004 Maui High Performance Computing Center, University of Hawaii 9 9 ## 10 10 ############################################################################### 11 12 ifndef prefix 13 export prefix=$(shell cd ../..;pwd) 14 endif 11 15 12 16 include ../../src/Makefile.Globals … … 69 73 $(RM) -f $@.tmp 70 74 75 install: $(testbindir) $(testbindir)/verified $(TARGET) 76 install $(TARGET) $(testbindir) 77 install verified/*.stderr verified/*.stdout $(testbindir)/verified 78 79 $(testbindir): 80 mkdir -p $(testbindir) 81 82 $(testbindir)/verified: 83 mkdir -p $(testbindir)/verified 84 85 -
trunk/psLib/test/dataManip/Makefile
r1002 r1007 3 3 ## Makefile: test/sysUtils 4 4 ## 5 ## $Revision: 1.1 2$ $Name: not supported by cvs2svn $6 ## $Date: 2004-06-11 19:24:43$5 ## $Revision: 1.13 $ $Name: not supported by cvs2svn $ 6 ## $Date: 2004-06-11 20:36:04 $ 7 7 ## 8 8 ## Copyright 2004 Maui High Performance Computing Center, University of Hawaii 9 9 ## 10 10 ############################################################################### 11 12 ifndef prefix 13 export prefix=$(shell cd ../..;pwd) 14 endif 11 15 12 16 include ../../src/Makefile.Globals … … 73 77 $(RM) -f $@.tmp 74 78 79 install: $(testbindir) $(testbindir)/verified $(TARGET) 80 install $(TARGET) $(testbindir) 81 install verified/*.stderr verified/*.stdout $(testbindir)/verified 82 83 $(testbindir): 84 mkdir -p $(testbindir) 85 86 $(testbindir)/verified: 87 mkdir -p $(testbindir)/verified 88 89 -
trunk/psLib/test/sysUtils/Makefile
r1003 r1007 3 3 ## Makefile: test/sysUtils 4 4 ## 5 ## $Revision: 1.1 4$ $Name: not supported by cvs2svn $6 ## $Date: 2004-06-11 19:37:23$5 ## $Revision: 1.15 $ $Name: not supported by cvs2svn $ 6 ## $Date: 2004-06-11 20:36:04 $ 7 7 ## 8 8 ## Copyright 2004 Maui High Performance Computing Center, University of Hawaii 9 9 ## 10 10 ############################################################################### 11 12 ifndef prefix 13 export prefix=$(shell cd ../..;pwd) 14 endif 11 15 12 16 include ../../src/Makefile.Globals … … 67 71 sed 's|\($*\)\.o[ :]*|builddir\/\1.o $@ : |g' $@.tmp > $@ 68 72 $(RM) -f $@.tmp 73 74 install: $(testbindir) $(testbindir)/verified $(TARGET) 75 install $(TARGET) $(testbindir) 76 install verified/*.stderr verified/*.stdout $(testbindir)/verified 77 78 $(testbindir): 79 mkdir -p $(testbindir) 80 81 $(testbindir)/verified: 82 mkdir -p $(testbindir)/verified 83
Note:
See TracChangeset
for help on using the changeset viewer.
