Skip to content

Commit

Permalink
T1-0.1.0
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
tone121 committed Feb 23, 2018
1 parent 5663c3d commit 18c9824
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -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)
Expand Down

0 comments on commit 18c9824

Please # to comment.