24 lines
823 B
Text
24 lines
823 B
Text
$NetBSD: patch-ah,v 1.1 2006/05/11 17:59:57 joerg Exp $
|
|
|
|
--- Makefile.dep.orig 2006-05-11 14:48:27.000000000 +0000
|
|
+++ Makefile.dep
|
|
@@ -48,17 +48,9 @@ default:
|
|
|
|
$(DEP): dep/%.dpp: src/%.cpp
|
|
@test -d dep/$(dir $*) || mkdir -p dep/$(dir $*)
|
|
- @echo "Generating dependancies for $<..."
|
|
- @$(SHELL) -ec '$(CXX) $(DCFLAGS) $(INCLUDE) $< \
|
|
- | sed '\''s/$(subst .,\.,$(notdir $*))\.o[ :]*/src\/$(subst /,\/,$*).o \
|
|
- dep\/$(subst /,\/,$*).d : /g'\'' > $@; \
|
|
- [ -s $@ ] || rm -f $@'
|
|
+ touch $@
|
|
|
|
$(C_DEP): dep/%.d: src/%.c
|
|
@test -d dep/$(dir $*) || mkdir -p dep/$(dir $*)
|
|
- @echo "Generating dependancies for $<..."
|
|
- @$(SHELL) -ec '$(CC) $(DCFLAGS) $(INCLUDE) $< \
|
|
- | sed '\''s/$(subst .,\.,$(notdir $*))\.o[ :]*/src\/$(subst /,\/,$*).o \
|
|
- dep\/$(subst /,\/,$*).d : /g'\'' > $@; \
|
|
- [ -s $@ ] || rm -f $@'
|
|
+ touch $@
|
|
|