Browse Source

support wheezy build reported at #343

(cherry picked from commit db7537b1f0)
changes/69/12269/8
Victor Seva 9 years ago
committed by Richard Fuchs
parent
commit
3c813acacc
6 changed files with 14 additions and 6 deletions
  1. +2
    -2
      Makefile
  2. +2
    -1
      daemon/Makefile
  3. +2
    -0
      debian/rules
  4. +3
    -1
      iptables-extension/Makefile
  5. +3
    -1
      kernel-module/Makefile
  6. +2
    -1
      recording-daemon/Makefile

+ 2
- 2
Makefile View File

@ -2,7 +2,7 @@ RTPENGINE_ROOT_DIR=.
include lib/lib.Makefile
.PHONY: all clean coverity
.PHONY: all distclean clean coverity
all:
$(MAKE) -C daemon
@ -13,7 +13,7 @@ with-kernel:
$(MAKE)
$(MAKE) -C kernel-module
clean:
distclean clean:
$(MAKE) -C daemon clean
$(MAKE) -C recording-daemon clean
$(MAKE) -C iptables-extension clean


+ 2
- 1
daemon/Makefile View File

@ -43,7 +43,7 @@ LIBSRCS= loglib.c auxlib.c rtplib.c
OBJS= $(SRCS:.c=.o) $(LIBSRCS:.c=.o)
.PHONY: all dep clean tests debug
.PHONY: all dep clean debug install
all:
$(MAKE) $(TARGET)
@ -67,5 +67,6 @@ $(OBJS): Makefile
$(LIBSRCS):
ln -fs ../lib/$@
install:
include .depend

+ 2
- 0
debian/rules View File

@ -62,3 +62,5 @@ override_dh_auto_install-indep:
.PHONY: override_dh_strip
override_dh_strip:
dh_strip --dbg-package=ngcp-rtpengine-dbg
override_dh_auto_test:

+ 3
- 1
iptables-extension/Makefile View File

@ -17,7 +17,7 @@ IP6TABLES = $(shell test -e /usr/include/ip6tables.h && echo 1)
WORK=0
.PHONY: all module clean
.PHONY: all module clean install
all: module
@ -55,3 +55,5 @@ endif
clean:
rm -f libxt_RTPENGINE.so libipt_RTPENGINE.so libip6t_RTPENGINE.so
install:

+ 3
- 1
kernel-module/Makefile View File

@ -28,7 +28,7 @@ EXTRA_CFLAGS += -D__RE_EXTERNAL
obj-m += xt_RTPENGINE.o
.PHONY: modules clean patch
.PHONY: modules clean patch install
modules:
make -C $(KBUILD) M=$(PWD) O=$(KBUILD) modules
@ -38,3 +38,5 @@ clean:
patch:
../utils/patch-kernel magic "$(PWD)" "$(KERNEL)" "$(RTPENGINE_VERSION)"
install:

+ 2
- 1
recording-daemon/Makefile View File

@ -30,7 +30,7 @@ LIBSRCS= loglib.c auxlib.c rtplib.c
OBJS= $(SRCS:.c=.o) $(LIBSRCS:.c=.o)
.PHONY: all dep clean tests debug
.PHONY: all dep clean debug install
all:
$(MAKE) $(TARGET)
@ -54,5 +54,6 @@ $(OBJS): Makefile
$(LIBSRCS):
ln -fs ../lib/$@
install:
include .depend

Loading…
Cancel
Save