]> git.draconx.ca Git - upkg.git/blobdiff - src/Makefile.am
Begin work on Engine.Texture.
[upkg.git] / src / Makefile.am
index 8b3567639e97e72baff8e2518a6b6b9aab606201..8bc2f18b868aee5101558a901233f87763f41111 100644 (file)
@@ -2,14 +2,16 @@ lib_LTLIBRARIES = libupkg.la
 
 libupkg_la_SOURCES = libupkg.c pack.c
 include_HEADERS = upkg.h
-noinst_HEADERS = pack.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 module.c exportable.c serializable.c music.c
+upkg_SOURCES  = upkg.c avl.c module.c exportable.c uobject.c
 upkg_CPPFLAGS = $(GLIB_CFLAGS) $(LTDLINCL)
-upkg_LDFLAGS  = $(GLIB_LIBS)
-upkg_LDADD    = libupkg.la $(LIBLTDL)
+upkg_LDFLAGS  = -export-dynamic
+upkg_LDADD    = libupkg.la $(LIBLTDL) $(GLIB_LIBS)
 
 endif