Changeset 1338
- Timestamp:
- Jul 29, 2004, 11:43:11 AM (22 years ago)
- Location:
- trunk/psLib/src
- Files:
-
- 20 deleted
- 5 edited
-
astronomy/Makefile (modified) (3 diffs)
-
astronomy/psCCD.d (deleted)
-
astronomy/psTime.d (deleted)
-
collections/Makefile (modified) (5 diffs)
-
dataManip/Makefile (modified) (4 diffs)
-
dataManip/psFFT.d (deleted)
-
dataManip/psFunctions.d (deleted)
-
dataManip/psMatrix.d (deleted)
-
dataManip/psMatrixVectorArithmetic.d (deleted)
-
dataManip/psMinimize.d (deleted)
-
dataManip/psStats.d (deleted)
-
image/Makefile (modified) (5 diffs)
-
image/psImage.d (deleted)
-
image/psImageExtraction.d (deleted)
-
image/psImageIO.d (deleted)
-
image/psImageManip.d (deleted)
-
image/psImageStats.d (deleted)
-
sysUtils/Makefile (modified) (4 diffs)
-
sysUtils/psAbort.d (deleted)
-
sysUtils/psError.d (deleted)
-
sysUtils/psHash.d (deleted)
-
sysUtils/psLogMsg.d (deleted)
-
sysUtils/psMemory.d (deleted)
-
sysUtils/psString.d (deleted)
-
sysUtils/psTrace.d (deleted)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/astronomy/Makefile
r1315 r1338 12 12 psCoord.o 13 13 14 OBJS = $(addprefix makedir/,$(SRC_OBJS)) 15 14 16 all: $(TARGET_STATIC) 15 17 16 18 # Rule to make static library 17 19 18 libpslib.a: $( SRC_OBJS)20 libpslib.a: $(OBJS) 19 21 # The ar option -r is to add/replace object and -s is to create 20 22 # a symbol table in the archive 21 $(AR) rcs ../$@ $( SRC_OBJS)23 $(AR) rcs ../$@ $(OBJS) 22 24 23 25 # Define PHONY target "install" which will install necessary files … … 32 34 clean: 33 35 @echo " Deleting intermediate files for 'astronomy'" 34 $(RM) $(SRC_OBJS) *.lint $(SRC_OBJS:.o=.i) 36 $(RM) $(OBJS) *.lint $(SRC_OBJS:.o=.i) 37 38 cleandep: 39 $(RM) $(OBJS:.o=.d) 35 40 36 41 %.lint: %.c … … 40 45 $(CC) -E $(CFLAGS) -o $@ $< 41 46 42 %.o: %.i 47 makedir/%.o: %.c 43 48 $(CC) -c $(CFLAGS) -o $@ $< 44 49 45 %.d: %.c50 makedir/%.d: %.c 46 51 $(CC) -MM $(CFLAGS) $< > $@.tmp 47 sed 's /\($*\)\.o[ :]*/\1.o $@ : /g' $@.tmp > $@52 sed 's|\($*\)\.o[ :]*|\1.o $@ : |g' $@.tmp > $@ 48 53 $(RM) -f $@.tmp 49 54 50 include $( SRC_OBJS:.o=.d)55 include $(OBJS:.o=.d) -
trunk/psLib/src/collections/Makefile
r1264 r1338 3 3 ## Makefile: collections 4 4 ## 5 ## $Revision: 1.2 6$ $Name: not supported by cvs2svn $6 ## $Date: 2004-07-2 2 20:42:54$5 ## $Revision: 1.27 $ $Name: not supported by cvs2svn $ 6 ## $Date: 2004-07-29 21:43:11 $ 7 7 ## 8 8 ## Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 37 37 psArray.o 38 38 39 OBJS = $(addprefix makedir/,$(SRC_OBJS)) 40 39 41 # Define PHONY target "all" which will make all the necessary items 40 42 … … 43 45 # Rule to make static library 44 46 45 libpslib.a: $( SRC_OBJS)47 libpslib.a: $(OBJS) 46 48 # The ar option -r is to add/replace object and -s is to create 47 49 # a symbol table in the archive 48 $(AR) rcs ../$@ $( SRC_OBJS)50 $(AR) rcs ../$@ $(OBJS) 49 51 50 52 # Define PHONY target "install" which will install necessary files … … 62 64 clean: 63 65 @echo " Deleting intermediate files for 'collections'" 64 $(RM) $(SRC_OBJS) *.lint $(SRC_OBJS:.o=.i) 66 $(RM) $(OBJS) *.lint $(SRC_OBJS:.o=.i) 67 68 cleandep: 69 $(RM) $(OBJS:.o=.d) 65 70 66 71 %.lint: %.c … … 70 75 $(CC) -E $(CFLAGS) -o $@ $< 71 76 72 %.o: %.i 77 makedir/%.o: %.c 73 78 $(CC) -c $(CFLAGS) -o $@ $< 74 79 75 %.d: %.c80 makedir/%.d: %.c 76 81 $(CC) -MM $(CFLAGS) $< > $@.tmp 77 sed 's /\($*\)\.o[ :]*/\1.o $@ : /g' $@.tmp > $@82 sed 's|\($*\)\.o[ :]*|\1.o $@ : |g' $@.tmp > $@ 78 83 $(RM) -f $@.tmp 79 84 80 include $( SRC_OBJS:.o=.d)85 include $(OBJS:.o=.d) -
trunk/psLib/src/dataManip/Makefile
r1264 r1338 13 13 psFFT.o \ 14 14 psMinimize.o \ 15 15 16 OBJS = $(addprefix makedir/,$(SRC_OBJS)) 17 16 18 all: $(TARGET_STATIC) 17 19 … … 21 23 # Rule to make static library 22 24 23 libpslib.a: $( SRC_OBJS)25 libpslib.a: $(OBJS) 24 26 # The ar option -r is to add/replace object and -s is to create 25 27 # a symbol table in the archive 26 $(AR) rcs ../$@ $( SRC_OBJS)28 $(AR) rcs ../$@ $(OBJS) 27 29 28 30 # Define PHONY target "install" which will install necessary files … … 37 39 clean: 38 40 @echo " Deleting intermediate files for 'sysUtils'" 39 $(RM) $(SRC_OBJS) *.lint $(SRC_OBJS:.o=.i) 41 $(RM) $(OBJS) *.lint $(SRC_OBJS:.o=.i) 42 43 cleandep: 44 $(RM) $(OBJS:.o=.d) 40 45 41 46 %.lint: %.c … … 45 50 $(CC) -E $(CFLAGS) -o $@ $< 46 51 47 %.o: %.i 52 makedir/%.o: %.c 48 53 $(CC) -c $(CFLAGS) -o $@ $< 49 54 50 %.d: %.c55 makedir/%.d: %.c 51 56 $(CC) -MM $(CFLAGS) $< > $@.tmp 52 sed 's /\($*\)\.o[ :]*/\1.o $@ : /g' $@.tmp > $@57 sed 's|\($*\)\.o[ :]*|\1.o $@ : |g' $@.tmp > $@ 53 58 $(RM) -f $@.tmp 54 59 55 include $( SRC_OBJS:.o=.d)60 include $(OBJS:.o=.d) -
trunk/psLib/src/image/Makefile
r1266 r1338 3 3 ## Makefile: collections 4 4 ## 5 ## $Revision: 1. 1$ $Name: not supported by cvs2svn $6 ## $Date: 2004-07-2 2 20:47:55$5 ## $Revision: 1.2 $ $Name: not supported by cvs2svn $ 6 ## $Date: 2004-07-29 21:43:11 $ 7 7 ## 8 8 ## Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 36 36 psImageStats.o 37 37 38 OBJS = $(addprefix makedir/,$(SRC_OBJS)) 39 38 40 # Define PHONY target "all" which will make all the necessary items 39 41 … … 42 44 # Rule to make static library 43 45 44 libpslib.a: $( SRC_OBJS)46 libpslib.a: $(OBJS) 45 47 # The ar option -r is to add/replace object and -s is to create 46 48 # a symbol table in the archive 47 $(AR) rcs ../$@ $( SRC_OBJS)49 $(AR) rcs ../$@ $(OBJS) 48 50 49 51 # Define PHONY target "install" which will install necessary files … … 61 63 clean: 62 64 @echo " Deleting intermediate files for 'collections'" 63 $(RM) $(SRC_OBJS) *.lint $(SRC_OBJS:.o=.i) 65 $(RM) $(OBJS) *.lint $(SRC_OBJS:.o=.i) 66 67 cleandep: 68 $(RM) $(OBJS:.o=.d) 64 69 65 70 %.lint: %.c … … 69 74 $(CC) -E $(CFLAGS) -o $@ $< 70 75 71 %.o: %.i 76 makedir/%.o: %.c 72 77 $(CC) -c $(CFLAGS) -o $@ $< 73 78 74 %.d: %.c79 makedir/%.d: %.c 75 80 $(CC) -MM $(CFLAGS) $< > $@.tmp 76 sed 's /\($*\)\.o[ :]*/\1.o $@ : /g' $@.tmp > $@81 sed 's|\($*\)\.o[ :]*|\1.o $@ : |g' $@.tmp > $@ 77 82 $(RM) -f $@.tmp 78 83 79 include $( SRC_OBJS:.o=.d)84 include $(OBJS:.o=.d) -
trunk/psLib/src/sysUtils/Makefile
r986 r1338 3 3 ## Makefile: sysUtils 4 4 ## 5 ## $Revision: 1.1 6$ $Name: not supported by cvs2svn $6 ## $Date: 2004-0 6-10 20:40:26$5 ## $Revision: 1.17 $ $Name: not supported by cvs2svn $ 6 ## $Date: 2004-07-29 21:43:11 $ 7 7 ## 8 8 ## Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 38 38 psString.o 39 39 40 OBJS = $(addprefix makedir/,$(SRC_OBJS)) 41 40 42 # Define PHONY target "all" which will make all the necessary items 41 43 … … 44 46 # Rule to make static library 45 47 46 libpslib.a: $( SRC_OBJS)48 libpslib.a: $(OBJS) 47 49 # The ar option -r is to add/replace object and -s is to create 48 50 # a symbol table in the archive 49 $(AR) rcs ../$@ $( SRC_OBJS)51 $(AR) rcs ../$@ $(OBJS) 50 52 51 53 # Define PHONY target "install" which will install necessary files … … 63 65 clean: 64 66 @echo " Deleting intermediate files for 'sysUtils'" 65 $(RM) $(SRC_OBJS) *.lint 67 $(RM) $(OBJS) *.lint 68 69 cleandep: 70 $(RM) $(OBJS:.o=.d) 66 71 67 72 %.lint: %.c 68 73 splint +posixlib -exportlocal -realcompare $(INCLUDE_GLOBAL) $? > $@; cat $@ 69 74 70 %.d: %.c 75 makedir/%.o: %.c 76 $(CC) -c $(CFLAGS) -o $@ $< 77 78 makedir/%.d: %.c 71 79 $(CC) -MM $(CFLAGS) $< > $@.tmp 72 sed 's /\($*\)\.o[ :]*/\1.o $@ : /g' $@.tmp > $@80 sed 's|\($*\)\.o[ :]*|\1.o $@ : |g' $@.tmp > $@ 73 81 $(RM) -f $@.tmp 74 82 75 include $( SRC_OBJS:.o=.d)83 include $(OBJS:.o=.d)
Note:
See TracChangeset
for help on using the changeset viewer.
