diff options
Diffstat (limited to 'sound-theme/Makefile.am')
-rw-r--r-- | sound-theme/Makefile.am | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/sound-theme/Makefile.am b/sound-theme/Makefile.am new file mode 100644 index 0000000..7a9cd4b --- /dev/null +++ b/sound-theme/Makefile.am @@ -0,0 +1,38 @@ +NULL = + +SUBDIRS = sounds + +noinst_LTLIBRARIES = libsoundtheme.la + +AM_CPPFLAGS = \ + $(WARN_CFLAGS) \ + $(DISABLE_DEPRECATED) \ + $(SOUND_THEME_CFLAGS) \ + -DSOUND_DATA_DIR="\"$(datadir)/sounds\"" \ + -DSOUND_SET_DIR="\"$(pkgdatadir)/sounds\"" \ + $(NULL) + +libsoundtheme_la_SOURCES = \ + gvc-sound-theme-chooser.h \ + gvc-sound-theme-chooser.c \ + sound-theme-file-utils.h \ + sound-theme-file-utils.c \ + $(NULL) + +libsoundtheme_la_LIBADD = $(SOUND_THEME_LIBS) +libsoundtheme_la_LDFLAGS = -no-undefined + +BUILT_SOURCES = \ + $(NULL) + +EXTRA_DIST = gvc-sound-theme-editor.c gvc-sound-theme-editor.h + +CLEANFILES = \ + $(BUILT_SOURCES) \ + $(NULL) + +MAINTAINERCLEANFILES = \ + *~ \ + Makefile.in + +-include $(top_srcdir)/git.mk |