Add memory helpers
This commit is contained in:
parent
530cd72e3a
commit
977e6564f2
5 changed files with 54 additions and 1 deletions
17
kernel/Helpers/Makefile
Normal file
17
kernel/Helpers/Makefile
Normal 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
|
||||
#----------------
|
Loading…
Add table
Add a link
Reference in a new issue