X-Git-Url: https://sigrok.org/gitweb/?p=libsigrokdecode.git;a=blobdiff_plain;f=Makefile.am;h=1a1074e25938e0c5941fca9ddb64c4b32874a09f;hp=a8df8f6e280a454d48cee9b23532eec39045fad9;hb=be93391b62b1575ad75db99bf25fef245b85f8b7;hpb=30d775b095a4b76e5fa755b19d5521affa3c053c diff --git a/Makefile.am b/Makefile.am index a8df8f6..1a1074e 100644 --- a/Makefile.am +++ b/Makefile.am @@ -23,11 +23,12 @@ AM_LIBTOOLFLAGS = --silent GNUMAKEFLAGS = --no-print-directory DECODERS_DIR = $(pkgdatadir)/decoders +COMMON_DIR = $(pkgdatadir)/common # Do not hard-code the decoders location on Windows. if WIN32 AM_CPPFLAGS = else -AM_CPPFLAGS = -DDECODERS_DIR='"$(DECODERS_DIR)"' +AM_CPPFLAGS = -DDECODERS_DIR='"$(DECODERS_DIR)"' -DCOMMON_DIR='"$(COMMON_DIR)"' endif # The tests CFLAGS are a superset of the libsigrokdecode CFLAGS. @@ -88,14 +89,20 @@ ChangeLog: dist-hook: ChangeLog $(MKDIR_P) $(distdir)/tools cp ${top_srcdir}/tools/install-decoders $(distdir)/tools + $(MKDIR_P) $(distdir)/common + cp -a ${top_srcdir}/common $(distdir) $(MKDIR_P) $(distdir)/decoders ${top_srcdir}/tools/install-decoders -i ${top_srcdir}/decoders \ -o $(distdir)/decoders +install-common: + $(MKDIR_P) $(DESTDIR)$(COMMON_DIR) + cp -a ${top_srcdir}/common $(DESTDIR)$(pkgdatadir) + install-decoders: $(MKDIR_P) $(DESTDIR)$(DECODERS_DIR) $(PYTHON3) ${top_srcdir}/tools/install-decoders \ -i ${top_srcdir}/decoders -o $(DESTDIR)$(DECODERS_DIR) -install-data-hook: install-decoders +install-data-hook: install-common install-decoders