Changeset 675 for trunk/psLib/src/sysUtils
- Timestamp:
- May 13, 2004, 2:59:11 PM (22 years ago)
- File:
-
- 1 edited
-
trunk/psLib/src/sysUtils/Makefile (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
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.
