-
Notifications
You must be signed in to change notification settings - Fork 11
/
Makefile.in
47 lines (39 loc) · 1.45 KB
/
Makefile.in
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
CONFIGURE_OPTIONS = @OPTIONS@
BUILDDIR = $(abspath @builddir@)
SRC = $(abspath @srcdir@)
.PHONY: sipXrouter sipXconfig sipXmedia sipXphones
sipXrouter:
cd ${SRC}/$@; autoreconf -if
mkdir -p $@
cd $@; ${SRC}/$@/configure ${CONFIGURE_OPTIONS}
cd $@; make sipx
sipXconfig:
cd ${SRC}/$@; autoreconf -if
mkdir -p $@
cd $@; ${SRC}/$@/configure ${CONFIGURE_OPTIONS}
cd $@; make sipx
sipXmedia:
cd ${SRC}/$@; autoreconf -if
mkdir -p $@
cd $@; ${SRC}/$@/configure ${CONFIGURE_OPTIONS}
cd $@; make sipx
sipXphones:
cd ${SRC}/$@; autoreconf -if
mkdir -p $@
cd $@; ${SRC}/$@/configure ${CONFIGURE_OPTIONS}
cd $@; make sipx
sipx: sipXrouter sipXconfig sipXmedia sipXphones
sipx.configure:
cd ${SRC}/sipXrouter; autoreconf -if
cd ${SRC}/sipXconfig; autoreconf -if
cd ${SRC}/sipXmedia; autoreconf -if
cd ${SRC}/sipXphones; autoreconf -if
mkdir -p sipXrouter; cd sipXrouter; ${SRC}/sipXrouter/configure ${CONFIGURE_OPTIONS}
mkdir -p sipXconfig; cd sipXconfig; ${SRC}/sipXconfig/configure ${CONFIGURE_OPTIONS}
mkdir -p sipXmedia; cd sipXmedia; ${SRC}/sipXmedia/configure ${CONFIGURE_OPTIONS}
mkdir -p sipXphones; cd sipXphones; ${SRC}/sipXphones/configure ${CONFIGURE_OPTIONS}
sipx.deps:
@cd sipXrouter; make --no-print-directory sipx.deps | grep -v sipx*
@cd sipXconfig; make --no-print-directory sipx.deps | grep -v sipx*
@cd sipXmedia; make --no-print-directory sipx.deps | grep -v sipx*
@cd sipXphones; make --no-print-directory sipx.deps | grep -v sipx*