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

16 lines
192 B
Makefile
Raw Normal View History

2024-08-22 19:26:18 +02:00
# Compiler
CXX = g++
# Source file
SRC = main.cpp
# Executable name
EXEC = pluto_isa_asm
# Default target
all:
mkdir -p bin/
$(CXX) $(SRC) -o bin/$(EXEC)
clean:
rm bin/$(EXEC)
2024-08-23 10:38:57 +02:00
rmdir bin