1if USE_OPENGL 2GL_DIR = gl 3endif 4if USE_GLES2 5GL_DIR = gl 6endif 7 8SUBDIRS = \ 9 tag \ 10 fft \ 11 audio \ 12 rtp \ 13 sdp \ 14 rtsp \ 15 video \ 16 pbutils \ 17 riff \ 18 app \ 19 allocators \ 20 $(GL_DIR) 21 22DIST_SUBDIRS = \ 23 tag \ 24 fft \ 25 audio \ 26 rtp \ 27 sdp \ 28 rtsp \ 29 video \ 30 pbutils \ 31 riff \ 32 app \ 33 allocators \ 34 gl 35 36noinst_HEADERS = gettext.h gst-i18n-app.h gst-i18n-plugin.h glib-compat-private.h 37 38# dependencies: 39audio: tag 40 41riff: tag audio 42 43rtsp: sdp 44 45pbutils: video audio 46 47rtp: audio 48 49sdp: rtp 50 51gl: video allocators 52 53INDEPENDENT_SUBDIRS = \ 54 tag audio fft video app 55 56.PHONY: independent-subdirs $(INDEPENDENT_SUBDIRS) 57 58independent-subdirs: $(INDEPENDENT_SUBDIRS) 59 60$(INDEPENDENT_SUBDIRS): 61 $(MAKE) -C $@ 62 63all-recursive: independent-subdirs 64