Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Makefile.am #72

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion Makefile.am
Original file line number Diff line number Diff line change
@@ -1,12 +1,16 @@

ACLOCAL_AMFLAGS = `-I m4`

SUBDIRS = \
DIRS = \
doc \
po \
src \
tests

SUBDIRS= ${DIRS} @DOC@

DIST_SUBDIRS= ${DIRS} doc

libdxfdocdir = ${prefix}/doc

libdxfdoc_DATA = \
Expand All @@ -24,6 +28,14 @@ libdxfdoc_DATA = \

EXTRA_DIST = $(libdxfdoc_DATA)

INTLTOOL_FILES = intltool-extract.in intltool-merge.in intltool-update.in

DISTCLEANFILES= configure.lineno intltool-extract intltool-merge intltool-update po/.intltool-merge-cache

MAINTAINERCLEANFILES= $(INTLTOOL_FILES)

DISTCHECK_CONFIGURE_FLAGS := ${DISTCHECK_CONFIGURE_FLAGS} --disable-update-mime-database --disable-update-desktop-database

# Copy all the spec files. Of cource, only one is actually used.
dist-hook:
for specfile in *.spec; do \
Expand Down