Browse Source

add makefile dependency to itself

pull/81/head
Richard Fuchs 11 years ago
parent
commit
b83e80c811
1 changed files with 3 additions and 1 deletions
  1. +3
    -1
      daemon/Makefile

+ 3
- 1
daemon/Makefile View File

@ -83,8 +83,10 @@ clean:
.depend: $(SRCS) Makefile
$(CC) $(CFLAGS) -M $(SRCS) | sed -e 's/:/ .depend:/' > .depend
rtpengine: $(OBJS) .depend
rtpengine: $(OBJS) .depend Makefile
$(CC) $(CFLAGS) -o $@ $(OBJS) $(LDFLAGS)
$(OBJS): Makefile
include .depend

Loading…
Cancel
Save