From 61a27cbf7f47b0d4736df2e0037475b1085e3ac3 Mon Sep 17 00:00:00 2001 From: Stefan Schmidt Date: Tue, 28 Oct 2014 17:35:05 +0100 Subject: [PATCH] examples/elocation: Add example makefile for elocation To make the example worthwhile to run alone add a basic makefile for the example like we do for others. --- src/examples/elocation/Makefile.examples | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 src/examples/elocation/Makefile.examples diff --git a/src/examples/elocation/Makefile.examples b/src/examples/elocation/Makefile.examples new file mode 100644 index 0000000000..20ab2b2628 --- /dev/null +++ b/src/examples/elocation/Makefile.examples @@ -0,0 +1,14 @@ +CC=gcc +COMMON_FLAGS=`pkg-config --libs --cflags eina,ecore,eldbus,elocation` + +EXAMPLES= elocation + +all: examples +examples: $(EXAMPLES) + +$(EXAMPLES): + $(CC) -o $@ $@.c $(COMMON_FLAGS) + +clean: + @echo "Cleaning up built objects..." + @rm -Rf $(EXAMPLES) -- 2.34.1