1lib_LTLIBRARIES=libICE.la 2 3AM_CPPFLAGS = -I${top_srcdir}/include 4 5AM_CFLAGS = \ 6 $(ICE_CFLAGS) \ 7 $(CWARNFLAGS) 8 9libICE_la_LDFLAGS = -version-number 6:3:0 -no-undefined 10 11libICE_la_LIBADD = $(ICE_LIBS) 12 13libICE_la_SOURCES = \ 14 ICElibint.h \ 15 accept.c \ 16 authutil.c \ 17 connect.c \ 18 error.c \ 19 getauth.c \ 20 globals.h \ 21 iceauth.c \ 22 icetrans.c \ 23 listen.c \ 24 listenwk.c \ 25 locking.c \ 26 misc.c \ 27 ping.c \ 28 process.c \ 29 protosetup.c \ 30 register.c \ 31 replywait.c \ 32 setauth.c \ 33 shutdown.c \ 34 watch.c 35 36iceincludedir=$(includedir)/X11/ICE 37iceinclude_HEADERS=\ 38 $(top_srcdir)/include/X11/ICE/ICE.h \ 39 $(top_srcdir)/include/X11/ICE/ICEconn.h \ 40 $(top_srcdir)/include/X11/ICE/ICElib.h \ 41 $(top_srcdir)/include/X11/ICE/ICEmsg.h \ 42 $(top_srcdir)/include/X11/ICE/ICEproto.h \ 43 $(top_srcdir)/include/X11/ICE/ICEutil.h 44 45if LINT 46ALL_LINT_FLAGS=$(LINT_FLAGS) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ 47 $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) 48 49lint: 50 $(LINT) $(ALL_LINT_FLAGS) $(libICE_la_SOURCES) $(XINERAMA_LIBS) 51endif LINT 52