mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-10 19:31:12 +00:00
51675e0c2a
Phase 1 of adding the registry scan helper
30 lines
478 B
Makefile
30 lines
478 B
Makefile
if HAVE_CHECK
|
|
SUBDIRS_CHECK = check
|
|
else
|
|
SUBDIRS_CHECK =
|
|
endif
|
|
|
|
if GST_DISABLE_NET
|
|
SUBDIRS_NET =
|
|
else
|
|
if HAVE_SYS_SOCKET_H
|
|
SUBDIRS_NET = net
|
|
else
|
|
if HAVE_WINSOCK2_H
|
|
SUBDIRS_NET = net
|
|
else
|
|
SUBDIRS_NET =
|
|
endif
|
|
endif
|
|
endif
|
|
|
|
if GST_DISABLE_REGISTRY
|
|
SUBDIRS_HELPERS =
|
|
else
|
|
SUBDIRS_HELPERS = helpers
|
|
endif
|
|
|
|
SUBDIRS_ALWAYS = base controller dataprotocol
|
|
|
|
SUBDIRS = $(SUBDIRS_ALWAYS) $(SUBDIRS_CHECK) $(SUBDIRS_NET) $(SUBDIRS_HELPERS)
|
|
DIST_SUBDIRS = $(SUBDIRS_ALWAYS) check net helpers
|