stefan pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=61a27cbf7f47b0d4736df2e0037475b1085e3ac3
commit 61a27cbf7f47b0d4736df2e0037475b1085e3ac3 Author: Stefan Schmidt <[email protected]> Date: Tue Oct 28 17:35:05 2014 +0100 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(+) diff --git a/src/examples/elocation/Makefile.examples b/src/examples/elocation/Makefile.examples new file mode 100644 index 0000000..20ab2b2 --- /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 $@ [email protected] $(COMMON_FLAGS) + +clean: + @echo "Cleaning up built objects..." + @rm -Rf $(EXAMPLES) --
