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
2024-08-23 11:45:35 +02:00

18 lines
236 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)
windows:
mkdir -p bin/
$(CXX) $(SRC) -o bin/$(EXEC).exe
clean:
rm -r bin/