From b9fb6e88fc023303181e384719c8e2d3f19133a2 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. --- book/Makefile | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 book/Makefile diff --git a/book/Makefile b/book/Makefile new file mode 100644 index 0000000..e850241 --- /dev/null +++ b/book/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