1.0.0
This commit is contained in:
parent
3109cc0e75
commit
d83aef84a7
5 changed files with 91 additions and 31 deletions
14
Makefile
Normal file
14
Makefile
Normal file
|
@ -0,0 +1,14 @@
|
|||
# Compiler
|
||||
CXX = g++
|
||||
# Source file
|
||||
SRC = main.cpp
|
||||
# Executable name
|
||||
EXEC = pluto_isa_emu
|
||||
|
||||
# Default target
|
||||
all:
|
||||
mkdir -p bin/
|
||||
$(CXX) $(SRC) -o bin/$(EXEC)
|
||||
|
||||
clean:
|
||||
rm bin/$(EXEC)
|
Reference in a new issue