X-Git-Url: https://git.draconx.ca/gitweb/liblbx.git/blobdiff_plain/447ef44f088576786bcff9c13a7ff8b414e929cb..ff5bd81012bba4202487c9a5bf7649bd63ca4bae:/src/Makefile.inc diff --git a/src/Makefile.inc b/src/Makefile.inc index 063ca86..fd3d0a8 100644 --- a/src/Makefile.inc +++ b/src/Makefile.inc @@ -1,16 +1,24 @@ +# 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. + lbxdir = $(includedir)/lbx lbx_HEADERS = src/lbx.h src/image.h +noinst_HEADERS += src/byteorder.h src/misc.h src/tools.h src/pack.h + lib_LTLIBRARIES += liblbx.la -liblbx_la_SOURCES = src/byteorder.h src/misc.h src/misc.c src/lbx.c src/image.c +liblbx_la_SOURCES = src/misc.c src/lbx.c src/image.c src/pack.c bin_PROGRAMS += lbxtool -lbxtool_SOURCES = src/tools.h src/lbxtool.c +lbxtool_SOURCES = src/lbxtool.c lbxtool_LDADD = liblbx.la if BUILD_LBXIMG bin_PROGRAMS += lbximg -lbximg_SOURCES = src/tools.h src/lbximg.c +lbximg_SOURCES = src/lbximg.c lbximg_LDADD = liblbx.la $(LIBPNG_LIBS) lbximg_CFLAGS = $(LIBPNG_CFLAGS) endif