From e7e3545115ea2bab86d7d71268dba8f4c8ca650e Mon Sep 17 00:00:00 2001 From: "Steinar H. Gunderson" Date: Tue, 9 Dec 2014 02:03:12 +0100 Subject: [PATCH] Add a Makefile for the book builder stuff. --- Makefile | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..e850241 --- /dev/null +++ b/Makefile @@ -0,0 +1,7 @@ +CXXFLAGS=-std=gnu++11 -O2 -g -Wall +LDLIBS=-lmtbl +all: binloader binlookup + +.PHONY: clean +clean: + $(RM) binloader binlookup -- 2.39.2