This repository has been archived on 2024-08-24. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
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/