]> git.draconx.ca Git - upkg.git/blobdiff - src/Makefile.am
Reorganize object hierarchy to root at "UObject".
[upkg.git] / src / Makefile.am
index e244fbdbae24b717a734bae08d9f59d198939880..8bc2f18b868aee5101558a901233f87763f41111 100644 (file)
@@ -2,16 +2,16 @@ lib_LTLIBRARIES = libupkg.la
 
 libupkg_la_SOURCES = libupkg.c pack.c
 include_HEADERS = upkg.h
-noinst_HEADERS = pack.h serializable.h exportable.h module.h avl.h
+noinst_HEADERS = pack.h exportable.h module.h avl.h
 
 if BUILD_UPKG
 
 include engine/Makefile.inc
 
 bin_PROGRAMS  = upkg
-upkg_SOURCES  = upkg.c avl.c module.c exportable.c serializable.c
+upkg_SOURCES  = upkg.c avl.c module.c exportable.c uobject.c
 upkg_CPPFLAGS = $(GLIB_CFLAGS) $(LTDLINCL)
-upkg_LDFLAGS  = $(GLIB_LIBS) -export-dynamic
-upkg_LDADD    = libupkg.la $(LIBLTDL)
+upkg_LDFLAGS  = -export-dynamic
+upkg_LDADD    = libupkg.la $(LIBLTDL) $(GLIB_LIBS)
 
 endif