mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-05 17:09:48 +00:00
a0c4c4812c
Original commit message from CVS: CVS surgery + support to move base, check, and net out of gst and into libs/gst
20 lines
323 B
Makefile
20 lines
323 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
|
|
SUBDIRS_NET =
|
|
endif
|
|
endif
|
|
|
|
SUBDIRS_ALWAYS = base controller dataprotocol
|
|
|
|
SUBDIRS = $(SUBDIRS_ALWAYS) $(SUBDIRS_CHECK) $(SUBDIRS_NET)
|
|
DIST_SUBDIRS = $(SUBDIRS_ALWAYS) check net
|