This repository has been archived on 2024-08-24. You can view files and clone it, but cannot push or open issues or pull requests.
PlutoISA/Makefile
patrick_pluto d83aef84a7 1.0.0
2024-08-22 16:51:09 +02:00

14 lines
181 B
Makefile

# 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)