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

19 lines
236 B
Makefile
Raw Permalink Normal View History

2024-08-22 16:51:09 +02:00
# 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)
2024-08-23 11:45:35 +02:00
windows:
mkdir -p bin/
$(CXX) $(SRC) -o bin/$(EXEC).exe
2024-08-22 16:51:09 +02:00
clean:
2024-08-23 11:45:35 +02:00
rm -r bin/