aboutsummaryrefslogtreecommitdiffstats
path: root/gg_map/Makefile
diff options
context:
space:
mode:
authorLaurent Ghigonis <laurent@p1sec.com>2012-12-02 14:01:21 +0100
committerLaurent Ghigonis <laurent@p1sec.com>2012-12-02 14:01:21 +0100
commit9f0d5664dd8f80c2546e08dcd53cdc4a82320c4e (patch)
tree9a020d8392039dba10570b81833ffb4285738fdb /gg_map/Makefile
parentrename glouglou_efl to gg_net (diff)
downloadglouglou-9f0d5664dd8f80c2546e08dcd53cdc4a82320c4e.tar.xz
glouglou-9f0d5664dd8f80c2546e08dcd53cdc4a82320c4e.zip
rename gg_net to gg_map
Diffstat (limited to 'gg_map/Makefile')
-rw-r--r--gg_map/Makefile20
1 files changed, 20 insertions, 0 deletions
diff --git a/gg_map/Makefile b/gg_map/Makefile
new file mode 100644
index 0000000..902fbd7
--- /dev/null
+++ b/gg_map/Makefile
@@ -0,0 +1,20 @@
+CFLAGS += $(shell pkg-config --cflags elementary evas ecore)
+LIBS += $(shell pkg-config --libs elementary evas ecore)
+CFLAGS += -Wall -O2
+
+BINARY=gg_map
+
+PREFIX=/usr/local
+BINDIR=$(PREFIX)/bin
+
+$(BINARY): $(BINARY).o
+ $(CC) -o $@ $< $(LIBS)
+
+install: $(BINARY)
+ @echo "installation of $(BINARY)"
+ mkdir -p $(BINDIR)
+ install -m 0755 $(BINARY) $(BINDIR)
+
+clean:
+ rm -f $(BINARY) $(BINARY).o
+