blob: c92306752c82cf3a5cbdc72ac1dc91135169ade8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
--- include/Makefile.am.orig 1970-01-01 00:00:00 UTC
+++ include/Makefile.am
@@ -0,0 +1,21 @@
+ACLOCAL_AMFLAGS= -I m4
+
+pkginclude_HEADERS= \
+ audacity/ConfigInterface.h \
+ audacity/EffectAutomationParameters.h \
+ audacity/EffectInterface.h \
+ audacity/IdentInterface.h \
+ audacity/ImporterInterface.h \
+ audacity/ModuleInterface.h \
+ audacity/PluginInterface.h \
+ audacity/Types.h \
+ $(NULL)
+
+pkgdataincludedir= $(pkgdatadir)/include
+
+install-data-local: install-data-include
+install-data-include:
+ $(MKDIR_P) "$(DESTDIR)$(pkgdataincludedir)"
+ $(LN_S) "$(pkgincludedir)" "$(DESTDIR)$(pkgdataincludedir)/"
+
+.PHONY: install-data-include
|