summaryrefslogtreecommitdiff
path: root/Makefile-libostree.am
diff options
context:
space:
mode:
authorSimon McVittie <smcv@debian.org>2017-01-27 09:06:39 +0000
committerAtomic Bot <atomic-devel@projectatomic.io>2017-01-31 22:30:37 +0000
commitce10fd926197a102bd44f0faff3d59bb214336aa (patch)
tree471c385321d785f604fc826431e898c49b7ffae5 /Makefile-libostree.am
parent2b3076a8a09607754d913fd9799d5c6e881ed729 (diff)
downloadostree-ce10fd926197a102bd44f0faff3d59bb214336aa.tar.gz
libostree: Don't distribute generated enumtypes in tarballs
They are built at "make" time and cleaned up by "make clean", so there is no need to distribute them. Signed-off-by: Simon McVittie <smcv@debian.org> Closes: #665 Approved by: cgwalters
Diffstat (limited to 'Makefile-libostree.am')
-rw-r--r--Makefile-libostree.am6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile-libostree.am b/Makefile-libostree.am
index 88210c75..7454845a 100644
--- a/Makefile-libostree.am
+++ b/Makefile-libostree.am
@@ -47,11 +47,12 @@ src/libostree/ostree-enumtypes.c: src/libostree/ostree-enumtypes.c.template $(EN
--fhead "#include \"ostree-enumtypes.h\"" \
$(ENUM_TYPES) > $@.tmp && mv $@.tmp $@
-ENUM_GENERATED = \
+nodist_libostree_1_la_SOURCES = \
src/libostree/ostree-enumtypes.h \
src/libostree/ostree-enumtypes.c \
$(NULL)
-BUILT_SOURCES += $(ENUM_GENERATED)
+
+BUILT_SOURCES += $(nodist_libostree_1_la_SOURCES)
CLEANFILES += $(BUILT_SOURCES)
@@ -61,7 +62,6 @@ libbupsplit_la_SOURCES = \
$(NULL)
libostree_1_la_SOURCES = \
- $(ENUM_GENERATED) \
src/libostree/ostree-async-progress.c \
src/libostree/ostree-cmdprivate.h \
src/libostree/ostree-cmdprivate.c \