summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorExplorer09 <explorer09@gmail.com>2017-05-03 11:48:06 +0800
committerWill Estes <westes575@gmail.com>2017-05-03 13:14:16 -0400
commit259257623937630bb22cabf29f9897270aa62ce0 (patch)
tree12322f59652667f1f18758e7ff39ef07350c2c97
parent9131b8426a20fa3bbcdcc6999ad344b9afbf6367 (diff)
build: do not generate lib/Makefile.in.
Files in lib/ are picked up and built using makefile directives in src/Makefile.am. Remove the need to generate lib/Makefile.in and the stub lib/Makefile.am.
-rw-r--r--Makefile.am1
-rw-r--r--configure.ac1
-rw-r--r--lib/Makefile.am3
3 files changed, 0 insertions, 5 deletions
diff --git a/Makefile.am b/Makefile.am
index 807a109..638c549 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -42,7 +42,6 @@ EXTRA_DIST = \
autogen.sh
SUBDIRS = \
- lib \
src \
doc \
examples \
diff --git a/configure.ac b/configure.ac
index f1459f3..55e774b 100644
--- a/configure.ac
+++ b/configure.ac
@@ -175,7 +175,6 @@ doc/Makefile
examples/Makefile
examples/fastwc/Makefile
examples/manual/Makefile
-lib/Makefile
po/Makefile.in
src/Makefile
tools/Makefile
diff --git a/lib/Makefile.am b/lib/Makefile.am
deleted file mode 100644
index 8562633..0000000
--- a/lib/Makefile.am
+++ /dev/null
@@ -1,3 +0,0 @@
-# Files in the lib/ subdirectory are picked up as needed by the flex
-# build system. As such, we don't need to specify anything beyond
-# having a Makefile.am for automake to generate a Makefile.in from.