ecore examples: move pkg-config at the end of gcc command.
authorDaniel Juyung Seo <seojuyung2@gmail.com>
Mon, 21 Oct 2013 15:45:11 +0000 (00:45 +0900)
committerDaniel Juyung Seo <seojuyung2@gmail.com>
Mon, 21 Oct 2013 15:45:29 +0000 (00:45 +0900)
This fixed build break on my machine.

src/examples/ecore/ecore_animator_example.c
src/examples/ecore/ecore_event_example_01.c
src/examples/ecore/ecore_event_example_02.c
src/examples/ecore/ecore_pipe_simple_example.c

index c35261d..eb9e151 100644 (file)
@@ -1,5 +1,5 @@
 //Compile with:
-//gcc -g -Wall `pkg-config --cflags --libs evas ecore-evas` -o ecore_animator_example ecore_animator_example.c
+//gcc -g -Wall -o ecore_animator_example ecore_animator_example.c `pkg-config --cflags --libs evas ecore-evas`
 
 #include <Ecore.h>
 #include <Ecore_Evas.h>
index 708afba..840f051 100644 (file)
@@ -1,5 +1,5 @@
 //Compile with:
-// gcc -g -Wall `pkg-config --cflags --libs ecore` -o ecore_event_example_01 ecore_event_example_01.c
+// gcc -g -Wall -o ecore_event_example_01 ecore_event_example_01.c `pkg-config --cflags --libs ecore`
 
 #include <Ecore.h>
 
index c8161ba..503f614 100644 (file)
@@ -1,5 +1,5 @@
 //Compile with:
-// gcc -g -Wall `pkg-config --cflags --libs ecore` -o ecore_event_example_02 ecore_event_example_02.c
+// gcc -g -Wall -o ecore_event_example_02 ecore_event_example_02.c `pkg-config --cflags --libs ecore`
 
 #include <Ecore.h>
 #include <unistd.h>
index ab87c31..4d56af4 100644 (file)
@@ -1,5 +1,5 @@
 //Compile with:
-//gcc -g -Wall `pkg-config --cflags --libs ecore` -o ecore_pipe_simple_example ecore_pipe_simple_example.c
+//gcc -g -Wall -o ecore_pipe_simple_example ecore_pipe_simple_example.c `pkg-config --cflags --libs ecore`
 
 #include <unistd.h>
 #include <Ecore.h>