From 723ccd615f99b65454e199cda9feb31f2283e787 Mon Sep 17 00:00:00 2001 From: John Criswell Date: Mon, 30 Jun 2003 22:13:48 +0000 Subject: Adding in sample project tree. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7018 91177308-0d34-0410-b5e6-96231b3b80d8 --- projects/sample/lib/Makefile | 11 +++++++++++ projects/sample/lib/sample/Makefile | 16 ++++++++++++++++ projects/sample/lib/sample/sample.c | 24 ++++++++++++++++++++++++ 3 files changed, 51 insertions(+) create mode 100644 projects/sample/lib/Makefile create mode 100644 projects/sample/lib/sample/Makefile create mode 100644 projects/sample/lib/sample/sample.c (limited to 'projects/sample/lib') diff --git a/projects/sample/lib/Makefile b/projects/sample/lib/Makefile new file mode 100644 index 0000000..4b97105 --- /dev/null +++ b/projects/sample/lib/Makefile @@ -0,0 +1,11 @@ +# +# 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/lib/sample/Makefile b/projects/sample/lib/sample/Makefile new file mode 100644 index 0000000..5569afb --- /dev/null +++ b/projects/sample/lib/sample/Makefile @@ -0,0 +1,16 @@ +# +# 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. +# +SHARED_LIBRARY=1 +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 new file mode 100644 index 0000000..bd78ed5 --- /dev/null +++ b/projects/sample/lib/sample/sample.c @@ -0,0 +1,24 @@ +/* + * 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 +#include + +// LLVM Header File +#include "Support/DataTypes.h" + +// Header file global to this project +#include "sample.h" + +int +compute_sample (int a) +{ + return a; +} + -- cgit v1.1