Add memory helpers

This commit is contained in:
manzerbredes 2015-07-20 20:06:20 +04:00
parent 530cd72e3a
commit 977e6564f2
5 changed files with 54 additions and 1 deletions

17
kernel/Helpers/Makefile Normal file
View file

@ -0,0 +1,17 @@
EXEC=helpers.o
all:$(EXEC)
#----- Helpers -----
$(EXEC): memory.cpp
$(CXX) -c -o $(EXEC) memory.cpp
#---------------
#----- Other -----
.PHONY:clean
clean:
rm *.o
#----------------