diff options
author | Arun Isaac | 2021-07-04 18:13:02 +0530 |
---|---|---|
committer | Arun Isaac | 2021-07-04 18:16:42 +0530 |
commit | 8413e664c27bdbf55d6b0290466bc8beade7d8a2 (patch) | |
tree | 17a65abb6d7ba086d2a527253c5da6b58690c44e | |
parent | 74caec6d8ddb23f72e2b08d7a0e13dcade01ec09 (diff) | |
download | ccwl-8413e664c27bdbf55d6b0290466bc8beade7d8a2.tar.gz ccwl-8413e664c27bdbf55d6b0290466bc8beade7d8a2.tar.lz ccwl-8413e664c27bdbf55d6b0290466bc8beade7d8a2.zip |
Makefile: List files in a single line.
There are so few that it makes no sense to list them one on a line.
* Makefile.am (SOURCES, SCM_TESTS): List files in a single line.
-rw-r--r-- | Makefile.am | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/Makefile.am b/Makefile.am index 5c625f2..d6305a8 100644 --- a/Makefile.am +++ b/Makefile.am @@ -72,17 +72,9 @@ godir = $(libdir)/guile/$(GUILE_EFFECTIVE_VERSION)/site-ccache bin_SCRIPTS = scripts/ccwl -SOURCES = \ - ccwl/ccwl.scm \ - ccwl/yaml.scm \ - ccwl/utils.scm - +SOURCES = ccwl/ccwl.scm ccwl/yaml.scm ccwl/utils.scm TEST_EXTENSIONS = .scm - -SCM_TESTS = \ - tests/ccwl.scm \ - tests/yaml.scm - +SCM_TESTS = tests/ccwl.scm tests/yaml.scm TESTS = $(SCM_TESTS) SCM_LOG_DRIVER = \ |