File: Makefile

package info (click to toggle)
openh323 1.15.3-2
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 28,544 kB
  • ctags: 27,016
  • sloc: cpp: 171,284; ansic: 42,216; sh: 2,619; makefile: 967; awk: 17
file content (19 lines) | stat: -rw-r--r-- 487 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
SUBDIRS = audio/GSM0610 \
          audio/Speex \
          audio/iLBC \
	  audio/LPC_10 \
	  audio/G726 \
	  audio/IMA_ADPCM

all debug opt both \
optshared debugshared bothshared \
optnoshared debugnoshared bothnoshared:
	set -e; $(foreach dir,$(SUBDIRS),$(MAKE) -C $(dir); )

clean optclean debugclean:
	set -e; $(foreach dir,$(SUBDIRS),$(MAKE) -C $(dir) clean; )

install:
	set -e; $(foreach dir,$(SUBDIRS),$(MAKE) -C $(dir) $@; )

optdepend debugdepend bothdepend release tagbuild: