X-Git-Url: https://git.draconx.ca/gitweb/liblbx.git/blobdiff_plain/30a5cc51eaad9d592b8016d81c74bbde4ca9022b..313abcb87669a8fd631f331fc94f749b838f3710:/Makefile.am diff --git a/Makefile.am b/Makefile.am index 03232b3..ff0b4a1 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,15 +1,64 @@ -# Copyright (C) 2009 Nick Bowler -# Copying and distribution of this file, with or without modification, -# are permitted in any medium without royalty provided the copyright -# notice and this notice are preserved. This file is offered as-is, -# without any warranty. +# Copyright © 2009-2010, 2013 Nick Bowler +# +# License WTFPL2: Do What The Fuck You Want To Public License, version 2. +# This is free software: you are free to do what the fuck you want to. +# There is NO WARRANTY, to the extent permitted by law. -ACLOCAL_AMFLAGS = -I m4 +ACLOCAL_AMFLAGS = -I m4 -I common/m4 -dist_man_MANS = -dist_doc_DATA = -lib_LTLIBRARIES = -bin_PROGRAMS = +EXTRA_DIST = m4/gnulib-cache.m4 +CLEANFILES = +MOSTLYCLEANFILES = +noinst_LTLIBRARIES = -include doc/Makefile.inc -include src/Makefile.inc +AM_CPPFLAGS = -I$(top_builddir)/lib -I$(top_srcdir)/lib + +dist_man_MANS = doc/man/lbxtool.1 doc/man/lbximg.1 +dist_doc_DATA = doc/txt/moo2-data.txt + +lbxdir = $(includedir)/lbx +lbx_HEADERS = src/lbx.h src/image.h src/error.h +noinst_HEADERS = src/misc.h src/tools.h src/pack.h + +lib_LTLIBRARIES = liblbx.la +liblbx_la_SOURCES = src/lbx.c src/fops.c src/image.c src/pack.c src/error.c +liblbx_la_LDFLAGS = -export-symbols-regex '^lbx_' + +bin_PROGRAMS = lbxtool +if BUILD_LBXIMG +bin_PROGRAMS += lbximg +endif +if BUILD_LBXGUI +bin_PROGRAMS += lbxgui +endif + +lbxtool_SOURCES = src/lbxtool.c +lbxtool_LDADD = liblbx.la libgnu.la +$(lbxtool_OBJECTS): $(gnulib_headers) + +lbximg_SOURCES = src/lbximg.c +lbximg_LDADD = liblbx.la libgnu.la $(LIBPNG_LIBS) +lbximg_CFLAGS = $(LIBPNG_CFLAGS) +$(lbximg_OBJECTS): $(gnulib_headers) + +nodist_lbxgui_SOURCES = src/gui/lbxgui.glade.c +lbxgui_SOURCES = src/gui/lbxgui.c src/gui/render.c src/gui/render.h \ + src/gui/bg.xbm +lbxgui_LDADD = liblbx.la $(GTK_LIBS) +lbxgui_CPPFLAGS = -I$(top_srcdir)/src +lbxgui_CFLAGS = $(GTK_CFLAGS) +lbxgui_LDFLAGS = $(AM_LDFLAGS) -export-dynamic + +.xml.c: + $(AM_V_GEN) printf '%s\n' $(*F) | sed -e 's/[^[:alnum:]]/_/g' \ + -e 's/.*/const char &[] =/' > $@.tmp + $(AM_V_at) sed -e 's/\\/\\\\/g' \ + -e 's/"/\\"/g' \ + -e 's/.*/"&\\n"/' \ + -e '$$ s/$$/;/' $< >> $@.tmp + $(AM_V_at) mv -f $@.tmp $@ + +EXTRA_DIST += src/gui/lbxgui.glade.xml +CLEANFILES += src/gui/lbxgui.glade.c + +include lib/gnulib.mk