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