Initial Commit
diff --git a/example/Makefile.am b/example/Makefile.am
new file mode 100644
index 0000000..1c1091c
--- /dev/null
+++ b/example/Makefile.am
@@ -0,0 +1,9 @@
+noinst_PROGRAMS =
+
+if BUILD_EXAMPLES
+
+noinst_PROGRAMS += pulse
+pulse_SOURCES = pulse.cpp
+pulse_LDADD = $(GPIOPLUS_LIBS)
+
+endif
diff --git a/example/pulse.cpp b/example/pulse.cpp
new file mode 100644
index 0000000..905869d
--- /dev/null
+++ b/example/pulse.cpp
@@ -0,0 +1,4 @@
+int main()
+{
+    return 0;
+}