From ecdf070d79d479655f2a75936845a454cbed84b3 Mon Sep 17 00:00:00 2001 From: epoch Date: Tue, 2 Jan 2018 06:02:45 -0600 Subject: added install and uninstall and a Makefile to the root dir. --- Makefile | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..5c9dc67 --- /dev/null +++ b/Makefile @@ -0,0 +1,22 @@ +all: hackvr hackvr_term + +.PHONY: hackvr hackvr_term clean install uninstall all + +hackvr: + $(MAKE) -C src all + +hackvr_term: + $(MAKE) -C hackvr_term all + +clean: + $(MAKE) -C src clean + $(MAKE) -C hackvr_term clean + +install: + $(MAKE) -C src install + $(MAKE) -C hackvr_term install + install -D font/font.hackvr $(PREFIX)/share/hackvr/font.hackvr + +uninstall: + $(MAKE) -C src uninstall + $(MAKE) -C hackvr_term uninstall -- cgit v1.2.3