summaryrefslogtreecommitdiff
path: root/projects/sample/tools
diff options
context:
space:
mode:
Diffstat (limited to 'projects/sample/tools')
-rw-r--r--projects/sample/tools/Makefile13
-rw-r--r--projects/sample/tools/sample/Makefile23
-rw-r--r--projects/sample/tools/sample/main.c12
3 files changed, 0 insertions, 48 deletions
diff --git a/projects/sample/tools/Makefile b/projects/sample/tools/Makefile
deleted file mode 100644
index 00ff52b42c..0000000000
--- a/projects/sample/tools/Makefile
+++ /dev/null
@@ -1,13 +0,0 @@
-##===- projects/sample/tools/Makefile ----------------------*- Makefile -*-===##
-
-#
-# Relative path to the top of the source tree.
-#
-LEVEL=..
-
-#
-# List all of the subdirectories that we will compile.
-#
-DIRS=sample
-
-include $(LEVEL)/Makefile.common
diff --git a/projects/sample/tools/sample/Makefile b/projects/sample/tools/sample/Makefile
deleted file mode 100644
index 324030c567..0000000000
--- a/projects/sample/tools/sample/Makefile
+++ /dev/null
@@ -1,23 +0,0 @@
-##===- projects/sample/tools/sample/Makefile ---------------*- Makefile -*-===##
-
-#
-# Indicate where we are relative to the top of the source tree.
-#
-LEVEL=../..
-
-#
-# Give the name of the tool.
-#
-TOOLNAME=Sample
-
-#
-# List libraries that we'll need
-# We use LIBS because sample is a dynamic library.
-#
-USEDLIBS = sample.a
-
-#
-# Include Makefile.common so we know what to do.
-#
-include $(LEVEL)/Makefile.common
-
diff --git a/projects/sample/tools/sample/main.c b/projects/sample/tools/sample/main.c
deleted file mode 100644
index ec0c3df605..0000000000
--- a/projects/sample/tools/sample/main.c
+++ /dev/null
@@ -1,12 +0,0 @@
-#include "sample.h"
-#include <stdio.h>
-#include <stdlib.h>
-#include <unistd.h>
-
-int
-main (int argc, char ** argv)
-{
- printf ("%d\n", compute_sample (5));
- exit (0);
-}
-