aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile18
1 files changed, 18 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..7778cce
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,18 @@
+CC=g++
+LIBS=gtkmm-3.0
+CFLAGS=-c -Wall
+LDFLAGS=-pthread -lbible
+SOURCES=header.cc main.cc mods.cc readerview.cc sword.cc
+OBJECTS=$(SOURCES:.cc=.o)
+EXECUTABLE=biblereader
+
+all: $(SOURCES) $(EXECUTABLE)
+
+$(EXECUTABLE): $(OBJECTS)
+ $(CC) $(LDFLAGS) $(OBJECTS) -o $@ `pkg-config $(LIBS) --libs`
+
+.cc.o:
+ $(CC) $(CFLAGS) $< -o $@ `pkg-config $(LIBS) --cflags`
+
+clean:
+ rm -rf *.o $(EXECUTABLE)