aboutsummaryrefslogtreecommitdiffstats
path: root/egraph/examples/Makefile
diff options
context:
space:
mode:
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)