From 43a0ba4ee53fb0e351be1ef87a60191f2d755464 Mon Sep 17 00:00:00 2001 From: Vito Caputo Date: Sun, 5 Nov 2023 17:02:32 -0800 Subject: build: build and link libplayit More preparatory work for adding an .IT file playback module --- configure.ac | 5 +++++ src/Makefile.am | 2 +- src/libs/Makefile.am | 1 + 3 files changed, 7 insertions(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 0a7ae5d..ddaa7bb 100644 --- a/configure.ac +++ b/configure.ac @@ -74,4 +74,9 @@ AC_CONFIG_FILES([ src/modules/swarm/Makefile src/modules/voronoi/Makefile ]) + +AC_CONFIG_SUBDIRS([ + src/libs/playit +]) + AC_OUTPUT diff --git a/src/Makefile.am b/src/Makefile.am index fda9b40..c8a232d 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -99,4 +99,4 @@ endif if ENABLE_DRM rototiller_SOURCES += drm_fb.c endif -rototiller_LDADD = libtil.la -lm +rototiller_LDADD = libtil.la @top_builddir@/src/libs/playit/src/libplayit.a -lm diff --git a/src/libs/Makefile.am b/src/libs/Makefile.am index 57b81d4..ff05beb 100644 --- a/src/libs/Makefile.am +++ b/src/libs/Makefile.am @@ -4,6 +4,7 @@ SUBDIRS = \ din \ rocket \ puddle \ + playit \ ray \ sig \ txt -- cgit v1.2.1