1noinst_LTLIBRARIES = libXquartz.la 2AM_CFLAGS = $(DIX_CFLAGS) 3AM_OBJCFLAGS = $(DIX_CFLAGS) 4AM_CPPFLAGS = \ 5 -DBUILD_DATE=\"$(BUILD_DATE)\" \ 6 -DXSERVER_VERSION=\"$(VERSION)\" \ 7 -DINXQUARTZ \ 8 -DUSE_NEW_CLUT \ 9 -DXFree86Server \ 10 -I$(top_srcdir)/miext/rootless \ 11 -I$(top_builddir)/pseudoramiX \ 12 -DX11LIBDIR=\"$(libdir)\" 13 14if GLX 15GL_DIR = GL 16endif 17 18SUBDIRS = bundle . $(GL_DIR) xpr pbproxy mach-startup man 19 20DIST_SUBDIRS = bundle . GL xpr pbproxy mach-startup man 21 22libXquartz_la_SOURCES = \ 23 $(top_srcdir)/mi/miinitext.c \ 24 X11Application.m \ 25 X11Controller.m \ 26 applewm.c \ 27 darwin.c \ 28 darwinEvents.c \ 29 darwinXinput.c \ 30 keysym2ucs.c \ 31 quartz.c \ 32 quartzKeyboard.c \ 33 quartzStartup.c \ 34 quartzRandR.c 35 36libXquartz_la_LIBADD = $(top_builddir)/pseudoramiX/libPseudoramiX.la 37 38EXTRA_DIST = \ 39 X11Application.h \ 40 X11Controller.h \ 41 applewmExt.h \ 42 darwin.h \ 43 darwinfb.h \ 44 darwinEvents.h \ 45 keysym2ucs.h \ 46 quartz.h \ 47 quartzKeyboard.h \ 48 quartzRandR.h \ 49 sanitizedCarbon.h \ 50 sanitizedCocoa.h 51