]> git.ipfire.org Git - thirdparty/ccache.git/commitdiff
Expand file lists in dev.mk.in to make it easier to add and sort the items
authorJoel Rosdahl <joel@rosdahl.net>
Wed, 8 Aug 2012 13:57:37 +0000 (15:57 +0200)
committerJoel Rosdahl <joel@rosdahl.net>
Wed, 8 Aug 2012 13:57:37 +0000 (15:57 +0200)
dev.mk.in

index 22af8c08a3d95d2c629ad82c2b5e0c4622123758..ee7af6903d7696b547cc26a788049cacca120ca9 100644 (file)
--- a/dev.mk.in
+++ b/dev.mk.in
@@ -24,21 +24,53 @@ generated_docs = \
 built_dist_files = $(generated_docs)
 
 headers = \
-    ccache.h hashtable.h hashtable_itr.h hashtable_private.h hashutil.h \
-    manifest.h mdfour.h counters.h murmurhashneutral2.h getopt_long.h \
-    language.h system.h compopt.h macroskip.h conf.h \
-    test/framework.h test/suites.h test/util.h
+    ccache.h \
+    compopt.h \
+    conf.h \
+    counters.h \
+    getopt_long.h \
+    hashtable.h \
+    hashtable_itr.h \
+    hashtable_private.h \
+    hashutil.h \
+    language.h \
+    macroskip.h \
+    manifest.h \
+    mdfour.h \
+    murmurhashneutral2.h \
+    system.h \
+    test/framework.h \
+    test/suites.h \
+    test/util.h
 
 files_to_clean += *.tar.bz2 *.tar.gz *.tar.xz *.xml .deps/*
 files_to_clean += $(built_dist_files) version.c test/suites.h
 files_to_distclean += .deps version.c dev.mk
 
 source_dist_files = \
-    main.c $(base_sources) $(test_sources) $(headers) zlib/*.c zlib/*.h \
-    config.h.in configure config.guess config.sub install-sh Makefile.in \
-    test.sh GPL-3.0.txt \
-    AUTHORS.txt INSTALL.txt LICENSE.txt MANUAL.txt NEWS.txt README.txt \
-    confitems_lookup.c envtoconfitems_lookup.c
+    $(base_sources) \
+    $(headers) \
+    $(test_sources) \
+    AUTHORS.txt \
+    GPL-3.0.txt \
+    INSTALL.txt \
+    LICENSE.txt \
+    MANUAL.txt \
+    Makefile.in \
+    NEWS.txt \
+    README.txt \
+    config.guess \
+    config.h.in \
+    config.sub \
+    configure \
+    confitems_lookup.c \
+    envtoconfitems_lookup.c \
+    install-sh \
+    main.c \
+    test.sh \
+    zlib/*.c \
+    zlib/*.h
+
 dist_files = \
     $(addprefix $(srcdir)/, $(source_dist_files)) \
     $(built_dist_files)