Home | History | Annotate | Download | only in freedreno
      1 AUTOMAKE_OPTIONS=subdir-objects
      2 include Makefile.sources
      3 
      4 AM_CFLAGS = \
      5 	$(WARN_CFLAGS) \
      6 	-I$(top_srcdir) \
      7 	$(PTHREADSTUBS_CFLAGS) \
      8 	-I$(top_srcdir)/include/drm
      9 
     10 libdrm_freedreno_la_LTLIBRARIES = libdrm_freedreno.la
     11 libdrm_freedreno_ladir = $(libdir)
     12 libdrm_freedreno_la_LDFLAGS = -version-number 1:0:0 -no-undefined
     13 libdrm_freedreno_la_LIBADD = \
     14 	../libdrm.la \
     15 	@PTHREADSTUBS_LIBS@ \
     16 	@CLOCK_LIB@
     17 
     18 libdrm_freedreno_la_SOURCES = $(LIBDRM_FREEDRENO_FILES)
     19 if HAVE_FREEDRENO_KGSL
     20 libdrm_freedreno_la_SOURCES += $(LIBDRM_FREEDRENO_KGSL_FILES)
     21 endif
     22 
     23 libdrm_freedrenocommonincludedir = ${includedir}/freedreno
     24 libdrm_freedrenocommoninclude_HEADERS = $(LIBDRM_FREEDRENO_H_FILES)
     25 
     26 pkgconfigdir = @pkgconfigdir@
     27 pkgconfig_DATA = libdrm_freedreno.pc
     28 
     29 TESTS = freedreno-symbol-check
     30 EXTRA_DIST = $(TESTS)
     31