From 580adceb9119bd25422ca5aed8c5acecc7ce18f9 Mon Sep 17 00:00:00 2001 From: Patrick_Pluto Date: Fri, 23 Aug 2024 11:46:32 +0200 Subject: [PATCH] Documentation Overhaul --- Makefile | 7 +++++-- README.md | 6 ------ 2 files changed, 5 insertions(+), 8 deletions(-) diff --git a/Makefile b/Makefile index 8bf452b..2ed6cbf 100644 --- a/Makefile +++ b/Makefile @@ -10,6 +10,9 @@ all: mkdir -p bin/ $(CXX) $(SRC) -o bin/$(EXEC) +windows: + mkdir -p bin/ + $(CXX) $(SRC) -o bin/$(EXEC).exe + clean: - rm bin/$(EXEC) - rmdir bin + rm -r bin/ diff --git a/README.md b/README.md index 86a5472..418b76b 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,3 @@ # PlutoISA This is an assembler for the custom made PlutoISA. - -To use, you need use a Unix-like environment with gcc and make. - -To compile, simply run "make", which will then create a bin subfolder with the executable. - -To remove, run "make clean" to remove the the executable and the bin folder. \ No newline at end of file