From 18c982433ae23e678ef5c34e641d023751aebc5a Mon Sep 17 00:00:00 2001 From: tone121 Date: Thu, 22 Feb 2018 21:41:11 -0700 Subject: [PATCH] T1-0.1.0 It's been a while since I first started working on my kernel. I'm proud to announce the first release of my kernel. Hopefully there are not a lot of bugs in the kernel, or maybe that's me trying to be optimistic for once. Time to take a break for a little while. --- Makefile | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index ef3ba71..fc48cd7 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,9 @@ -NAME = kernel -VERSION = 0.00 +# Makefile for T1 Kernel +NAME = t1 +MAJOR = 0 +PATCH = 1 +MINOR = 0 +VERSION = $(MAJOR).$(PATCH).$(MINOR) BINDIR = bin BINARYNAME = $(NAME)-$(VERSION) BINARY = $(BINDIR)/$(BINARYNAME)