diff options
author | Boram Park <boram1288.park@samsung.com> | 2012-08-21 18:04:11 +0900 |
---|---|---|
committer | Boram Park <boram1288.park@samsung.com> | 2012-08-21 18:04:11 +0900 |
commit | 8542b45178e4cb4e9ed24a5ce0fafb0742894e8d (patch) | |
tree | 31a1326e04a2829c5f3234bc68ba90639aedf330 /src/Makefile.am | |
parent | cf276784e49975be2e5a196acf4be5c2dc442622 (diff) | |
download | xcb-util-2.0alpha.tar.gz xcb-util-2.0alpha.tar.bz2 xcb-util-2.0alpha.zip |
upload tizen2.0 sourceHEADsubmit/master/20120920.1511522.0_alphamaster2.0alpha
Diffstat (limited to 'src/Makefile.am')
-rw-r--r-- | src/Makefile.am | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/src/Makefile.am b/src/Makefile.am new file mode 100644 index 0000000..13b5313 --- /dev/null +++ b/src/Makefile.am @@ -0,0 +1,33 @@ + +lib_LTLIBRARIES = libxcb-util.la + +AM_CPPFLAGS = $(XCB_CFLAGS) +AM_CFLAGS = $(CWARNFLAGS) + +libxcb_util_la_LIBADD = $(XCB_LIBS) +libxcb_util_la_LDFLAGS = -version-info 0:0:0 -no-undefined +libxcb_util_la_SOURCES = \ + atoms.c \ + event.c \ + xcb_aux.c + +xcbinclude_HEADERS = \ + xcb_util.h \ + xcb_atom.h \ + xcb_aux.h \ + xcb_bitops.h \ + xcb_event.h + +BUILT_SOURCES = atoms.c atoms.gperf xcb_atom.h +CLEANFILES = $(BUILT_SOURCES) +EXTRA_DIST = atomlist.m4 atoms.gperf.m4 xcb_atom.h.m4 + +atoms.c: atoms.gperf + $(GPERF) --output-file $@ $< + +atoms.gperf: $(srcdir)/atoms.gperf.m4 $(srcdir)/atomlist.m4 + $(M4) -I$(srcdir) $< >$@ + +xcb_atom.h: $(srcdir)/xcb_atom.h.m4 $(srcdir)/atomlist.m4 + $(M4) -I$(srcdir) $< >$@ + |