]> git.draconx.ca Git - upkg.git/blob - src/Makefile.am
module: add missing return value to module_exit.
[upkg.git] / src / Makefile.am
1 lib_LTLIBRARIES = libupkg.la
2
3 libupkg_la_SOURCES = libupkg.c pack.c
4 include_HEADERS = upkg.h
5 noinst_HEADERS = pack.h exportable.h uobject.h module.h avl.h
6
7 if BUILD_UPKG
8
9 include engine/Makefile.inc
10
11 bin_PROGRAMS  = upkg
12 upkg_SOURCES  = upkg.c avl.c module.c exportable.c uobject.c
13 upkg_CPPFLAGS = -I$(top_builddir)/lib -I$(top_srcdir)/lib \
14         $(GLIB_CFLAGS) $(LTDLINCL)
15 upkg_LDFLAGS  = -L$(top_builddir)/lib -export-dynamic
16 upkg_LDADD    = libupkg.la $(LIBLTDL) $(GLIB_LIBS) -lgnu
17
18 endif