diff options
Diffstat (limited to 'omap')
-rw-r--r-- | omap/Makefile.am | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/omap/Makefile.am b/omap/Makefile.am new file mode 100644 index 00000000..38a1007b --- /dev/null +++ b/omap/Makefile.am @@ -0,0 +1,26 @@ +AM_CFLAGS = \ + $(WARN_CFLAGS) \ + -fvisibility=hidden \ + -I$(top_srcdir) \ + $(PTHREADSTUBS_CFLAGS) \ + -I$(top_srcdir)/include/drm + +libdrm_omap_la_LTLIBRARIES = libdrm_omap.la +libdrm_omap_ladir = $(libdir) +libdrm_omap_la_LDFLAGS = -version-number 1:0:0 -no-undefined +libdrm_omap_la_LIBADD = ../libdrm.la @PTHREADSTUBS_LIBS@ + +libdrm_omap_la_SOURCES = omap_drm.c + +libdrm_omapcommonincludedir = ${includedir}/omap +libdrm_omapcommoninclude_HEADERS = omap_drm.h + +libdrm_omapincludedir = ${includedir}/libdrm +libdrm_omapinclude_HEADERS = omap_drmif.h + +pkgconfigdir = @pkgconfigdir@ +pkgconfig_DATA = libdrm_omap.pc + +AM_TESTS_ENVIRONMENT = NM='$(NM)' +TESTS = omap-symbol-check +EXTRA_DIST = $(TESTS) |