From 9f0d5664dd8f80c2546e08dcd53cdc4a82320c4e Mon Sep 17 00:00:00 2001 From: Laurent Ghigonis Date: Sun, 2 Dec 2012 14:01:21 +0100 Subject: rename gg_net to gg_map --- gg_map/Makefile | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 gg_map/Makefile (limited to 'gg_map/Makefile') 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 + -- cgit v1.2.3-59-g8ed1b