diff options
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/Makefile.am b/Makefile.am index 3515b69..cd0ee58 100644 --- a/Makefile.am +++ b/Makefile.am @@ -21,9 +21,21 @@ # SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. AUTOMAKE_OPTIONS = foreign -SUBDIRS = src dummy_drv_video i965_drv_video test + +SUBDIRS = src test +if BUILD_DUMMY_DRIVER +SUBDIRS += dummy_drv_video +endif +if BUILD_I965_DRIVER +SUBDIRS += i965_drv_video +endif + +pcfiles = \ + libva.pc pkgconfigdir = @pkgconfigdir@ -pkgconfig_DATA = libva.pc +pkgconfig_DATA = $(pcfiles) EXTRA_DIST = libva.pc.in + +CLEANFILES = $(pcfiles) |