aboutsummaryrefslogtreecommitdiffstats
path: root/egraph/examples/Makefile
diff options
context:
space:
mode:
authorLaurent Ghigonis <laurent@p1sec.com>2013-02-27 19:44:58 +0100
committerLaurent Ghigonis <laurent@p1sec.com>2013-02-27 19:44:58 +0100
commitd21bb7f6b5df682c2b41ad47a63c1dc6da0bcce2 (patch)
treebd0a2c7597f909b813e0d5ce011b59644edb4c99 /egraph/examples/Makefile
parentadd authors and license (diff)
parentlockup ++ (diff)
downloadglouglou-d21bb7f6b5df682c2b41ad47a63c1dc6da0bcce2.tar.xz
glouglou-d21bb7f6b5df682c2b41ad47a63c1dc6da0bcce2.zip
Merge egraph repository in glouglou repository
Diffstat (limited to 'egraph/examples/Makefile')
-rw-r--r--egraph/examples/Makefile12
1 files changed, 12 insertions, 0 deletions
diff --git a/egraph/examples/Makefile b/egraph/examples/Makefile
new file mode 100644
index 0000000..9ac573e
--- /dev/null
+++ b/egraph/examples/Makefile
@@ -0,0 +1,12 @@
+CFLAGS += -Wall -g
+CFLAGS += $(shell pkg-config --libs --cflags elementary)
+CFLAGS += -L../ -legraph -lecore_evas
+
+SOURCES = $(shell echo *.c)
+OBJECTS = $(SOURCES:.c=.o)
+TARGETS = $(SOURCES:.c=)
+
+all: $(TARGETS)
+
+clean:
+ rm -f $(TARGETS) $(OBJECTS)