summaryrefslogtreecommitdiff
path: root/projects/sample/lib/sample
diff options
context:
space:
mode:
Diffstat (limited to 'projects/sample/lib/sample')
-rw-r--r--projects/sample/lib/sample/Makefile16
-rw-r--r--projects/sample/lib/sample/sample.c25
2 files changed, 0 insertions, 41 deletions
diff --git a/projects/sample/lib/sample/Makefile b/projects/sample/lib/sample/Makefile
deleted file mode 100644
index af63399d2a..0000000000
--- a/projects/sample/lib/sample/Makefile
+++ /dev/null
@@ -1,16 +0,0 @@
-##===- projects/sample/lib/sample/Makefile -----------------*- Makefile -*-===##
-
-#
-# Indicate where we are relative to the top of the source tree.
-#
-LEVEL=../..
-
-#
-# Give the name of a library. This will build a dynamic version.
-#
-LIBRARYNAME=sample
-
-#
-# Include Makefile.common so we know what to do.
-#
-include $(LEVEL)/Makefile.common
diff --git a/projects/sample/lib/sample/sample.c b/projects/sample/lib/sample/sample.c
deleted file mode 100644
index a5ae28091b..0000000000
--- a/projects/sample/lib/sample/sample.c
+++ /dev/null
@@ -1,25 +0,0 @@
-/*
- * File: sample.c
- *
- * Description:
- * This is a sample source file for a library. It helps to demonstrate
- * how to setup a project that uses the LLVM build system, header files,
- * and libraries.
- */
-
-#include <stdio.h>
-#include <stdlib.h>
-
-/* LLVM Header File
-#include "llvm/Support/DataTypes.h"
-*/
-
-/* Header file global to this project */
-#include "sample.h"
-
-int
-compute_sample (int a)
-{
- return a;
-}
-