1EXTRA_DIST = RELEASE_NOTES 2 3noinst_LTLIBRARIES = libappleglx.la 4 5AM_CFLAGS = \ 6 -I$(top_srcdir)/src \ 7 -I$(top_srcdir)/include \ 8 -I$(top_srcdir)/src/glx \ 9 -I$(top_builddir)/src/mesa \ 10 -I$(top_srcdir)/src/mesa \ 11 -I$(top_srcdir)/src/mapi \ 12 -I$(top_builddir)/src/mapi/glapi \ 13 -I$(top_srcdir)/src/mapi/glapi \ 14 $(VISIBILITY_CFLAGS) \ 15 $(DEFINES) \ 16 $(X11_INCLUDES) 17 18libappleglx_la_SOURCES = \ 19 apple_cgl.c \ 20 apple_cgl.h \ 21 appledri.c \ 22 appledri.h \ 23 appledristr.h \ 24 apple_glapi.c \ 25 apple_glx.c \ 26 apple_glx_context.c \ 27 apple_glx_context.h \ 28 apple_glx_drawable.c \ 29 apple_glx_drawable.h \ 30 apple_glx.h \ 31 apple_glx_log.c \ 32 apple_glx_log.h \ 33 apple_glx_pbuffer.c \ 34 apple_glx_pixmap.c \ 35 apple_glx_surface.c \ 36 apple_visual.c \ 37 apple_visual.h \ 38 apple_xgl_api.h \ 39 apple_xgl_api_read.c \ 40 apple_xgl_api_stereo.c \ 41 apple_xgl_api_viewport.c \ 42 glx_empty.c 43 44libappleglx_la_LDFLAGS = -lXplugin -framework ApplicationServices -framework CoreFoundation 45