ecore examples: move pkg-config at the end of gcc command.

This fixed build break on my machine.
This commit is contained in:
Daniel Juyung Seo 2013-10-22 00:45:11 +09:00
parent 3d3f33f310
commit 203c3e7c15
4 changed files with 4 additions and 4 deletions

View 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>

View 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>

View 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>

View 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>