summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorIvan Maidanski <ivmai@mail.ru>2017-05-12 17:55:57 +0300
committerIvan Maidanski <ivmai@mail.ru>2017-05-12 17:55:57 +0300
commitdca8562362e83350ac6903cc1cd8193426d4bdbd (patch)
tree6de8c73782a7798121221ed47dff507dfd2b6666 /tools
parentf483ab5f9aefe4de8c2bb88acee0476f1b5c4889 (diff)
downloadbdwgc-dca8562362e83350ac6903cc1cd8193426d4bdbd.tar.gz
Remove 'dist' target from Makefile.direct
Distribution tarballs are now created using autotools-based Makefile. * Makefile.am (EXTRA_DIST): Remove tools/add_gc_prefix.c, tools/gcname.c items. * Makefile.direct (SRCS): Likewise. * Makefile.direct (DOC_FILES, TESTS, GNU_BUILD_FILES, OTHER_MAKEFILES, OTHER_FILES): Remove variable. * Makefile.direct (add_gc_prefix, gcname, dist, gc.tar, gc.tar.Z, gc.tar.gz): Remove target. * tools/add_gc_prefix.c: Remove. * tools/gcname.c: Likewise.
Diffstat (limited to 'tools')
-rw-r--r--tools/add_gc_prefix.c13
-rw-r--r--tools/gcname.c9
2 files changed, 0 insertions, 22 deletions
diff --git a/tools/add_gc_prefix.c b/tools/add_gc_prefix.c
deleted file mode 100644
index 60afa5ff..00000000
--- a/tools/add_gc_prefix.c
+++ /dev/null
@@ -1,13 +0,0 @@
-# include <stdio.h>
-# include <gc.h>
-
-int main(int argc, char ** argv)
-{
- int i;
-
- for (i = 1; i < argc; i++) {
- printf("gc-%d.%d.%d/%s ",
- GC_VERSION_MAJOR, GC_VERSION_MINOR, GC_VERSION_MICRO, argv[i]);
- }
- return(0);
-}
diff --git a/tools/gcname.c b/tools/gcname.c
deleted file mode 100644
index b9f33641..00000000
--- a/tools/gcname.c
+++ /dev/null
@@ -1,9 +0,0 @@
-#include <stdio.h>
-#include <gc.h>
-
-int main(void)
-{
- printf("gc-%d.%d.%d",
- GC_VERSION_MAJOR, GC_VERSION_MINOR, GC_VERSION_MICRO);
- return 0;
-}