Changeset 675
- Timestamp:
- May 13, 2004, 2:59:11 PM (22 years ago)
- Location:
- trunk/psLib/src
- Files:
-
- 3 edited
-
collections/Makefile (modified) (3 diffs)
-
dataManip/Makefile (modified) (2 diffs)
-
sysUtils/Makefile (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/collections/Makefile
r665 r675 3 3 ## Makefile: collections 4 4 ## 5 ## $Revision: 1.1 1$ $Name: not supported by cvs2svn $6 ## $Date: 2004-05-1 3 20:10:36$5 ## $Revision: 1.12 $ $Name: not supported by cvs2svn $ 6 ## $Date: 2004-05-14 00:59:11 $ 7 7 ## 8 8 ## Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 32 32 SRC_OBJS = psBitSet.o \ 33 33 psVector.o \ 34 psSort.o 34 psSort.o \ 35 psImage.o 35 36 36 37 # Define PHONY target "all" which will make all the necessary items … … 62 63 63 64 %.lint: %.c 64 splint +posixlib -exportlocal -realcompare $(INCLUDE_GLOBAL) $? > $@; cat $@ 65 splint +posixlib -exportlocal -realcompare $(INCLUDE_GLOBAL) $? > $@; cat $@ 66 67 %.d: %.c 68 @set -e; rm -f $@; \ 69 $(CC) -M $(CFLAGS) $< > $@.$$$$; \ 70 sed 's,\($*\)\.o[ :]*,\1.o $@ : ,g' < $@.$$$$ > $@; \ 71 rm -f $@.$$$$ 72 73 include $(SRC_OBJS:.o=.d) -
trunk/psLib/src/dataManip/Makefile
r674 r675 6 6 include ../Makefile.Globals 7 7 CFLAGS := $(CFLAGS_RELOC) -I. 8 SRC_OBJS = psStats.o8 SRC_OBJS = 9 9 10 10 all: $(TARGET_STATIC) … … 35 35 splint +posixlib -exportlocal -realcompare $(INCLUDE_GLOBAL) $? > $@; cat $@ 36 36 37 %.d: %.c 38 @set -e; rm -f $@; \ 39 $(CC) -M $(CFLAGS) $< > $@.$$$$; \ 40 sed 's,\($*\)\.o[ :]*,\1.o $@ : ,g' < $@.$$$$ > $@; \ 41 rm -f $@.$$$$ 37 42 43 include $(SRC_OBJS:.o=.d) -
trunk/psLib/src/sysUtils/Makefile
r596 r675 3 3 ## Makefile: sysUtils 4 4 ## 5 ## $Revision: 1. 9$ $Name: not supported by cvs2svn $6 ## $Date: 2004-05- 06 23:24:03$5 ## $Revision: 1.10 $ $Name: not supported by cvs2svn $ 6 ## $Date: 2004-05-14 00:59:11 $ 7 7 ## 8 8 ## Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 41 41 # Define PHONY target "all" which will make all the necessary items 42 42 43 all: $(TARGET_STATIC) 43 all: $(TARGET_STATIC) 44 44 45 45 # Rule to make static library … … 64 64 clean: 65 65 @echo " Deleting intermediate files for 'sysUtils'" 66 $(RM) $(SRC_OBJS) *.lint 66 $(RM) $(SRC_OBJS) *.lint $(SRC_OBJS:.o=.d) 67 67 68 68 %.lint: %.c 69 splint +posixlib -exportlocal -realcompare $(INCLUDE_GLOBAL) $? > $@; cat $@ 69 splint +posixlib -exportlocal -realcompare $(INCLUDE_GLOBAL) $? > $@; cat $@ 70 71 %.d: %.c 72 @set -e; rm -f $@; \ 73 $(CC) -M $(CFLAGS) $< > $@.$$$$; \ 74 sed 's,\($*\)\.o[ :]*,\1.o $@ : ,g' < $@.$$$$ > $@; \ 75 rm -f $@.$$$$ 76 77 include $(SRC_OBJS:.o=.d)
Note:
See TracChangeset
for help on using the changeset viewer.
