1noinst_LTLIBRARIES = libsync.la 2 3AM_CFLAGS = $(DIX_CFLAGS) 4 5AM_CPPFLAGS = 6 7if XORG 8sdk_HEADERS = misync.h misyncstr.h misyncshm.h misyncfd.h 9endif 10 11XSHMFENCE_SRCS = misyncshm.c 12 13libsync_la_SOURCES = \ 14 misync.c \ 15 misync.h \ 16 misyncfd.c \ 17 misyncstr.h 18 19if XSHMFENCE 20libsync_la_SOURCES += $(XSHMFENCE_SRCS) 21endif 22