This commit is contained in:
patrick_pluto 2024-08-22 16:51:09 +02:00
parent 3109cc0e75
commit d83aef84a7
5 changed files with 91 additions and 31 deletions

14
Makefile Normal file
View 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)