X-Git-Url: http://git.draconx.ca/gitweb/upkg.git/blobdiff_plain/4cac9f15932adee255ed2be1f6d419ffe068c438..51f81705f05a627c71dc96567a26837514ad48f0:/src/uobject/Makefile.inc diff --git a/src/uobject/Makefile.inc b/src/uobject/Makefile.inc index 37c0a65..7d4761a 100644 --- a/src/uobject/Makefile.inc +++ b/src/uobject/Makefile.inc @@ -1,3 +1,18 @@ +# 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. + +lib_LTLIBRARIES += libuobject.la + uobjectdir = $(includedir)/uobject uobject_HEADERS = uobject/uobject.h uobject/exportable.h uobject/loadable.h \ - uobject/module.h + uobject/module.h uobject/package.h +noinst_HEADERS += uobject/avl.h + +libuobject_la_SOURCES = uobject/uobject.c uobject/module.c uobject/avl.c \ + uobject/package.c uobject/loadable.c uobject/exportable.c +libuobject_la_CPPFLAGS = $(AM_CPPFLAGS) $(GLIB_CFLAGS) $(LTDLINCL) +libuobject_la_LIBADD = $(LIBLTDL) $(GLIB_LIBS) +libuobject_la_LDFLAGS = -export-symbols-regex '^u_'