IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
May 18, 2004, 4:16:04 PM (22 years ago)
Author:
desonia
Message:

Reverted *.d back to not using 'sed -i', which is not supported in OS/X.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/dataManip/Makefile

    r729 r732  
    3333
    3434%.lint: %.c
    35         splint +posixlib -exportlocal -realcompare $(INCLUDE_GLOBAL) $? > $@; cat $@
     35        splint +posixlib -exportlocal -realcompare $(INCLUDE_GLOBAL) $? > $@; cat $@
     36
     37%.d: %.c
     38        $(CC) -M $(CFLAGS) $< > $@.tmp
     39        sed 's/\($*\)\.o[ :]*/\1.o $@ : /g' $@.tmp > $@
     40        $(RM) -f $@.tmp
     41
     42include $(SRC_OBJS:.o=.d)
Note: See TracChangeset for help on using the changeset viewer.