diff --git a/.gitignore b/.gitignore index ebc3ca4..e058d00 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,3 @@ *.exe **/.DS_Store bin/ -melody-allocator diff --git a/Makefile b/Makefile deleted file mode 100644 index 8054e0c..0000000 --- a/Makefile +++ /dev/null @@ -1,11 +0,0 @@ -EXEC = "melody-allocator" - -$(EXEC): - gcc -o ./$(EXEC) -O2 ./main.c - -install: $(EXEC) - cp $(EXEC) /usr/local/bin/ - chmod +x /usr/local/bin/$(EXEC) - -clean: - rm ./$(EXEC) diff --git a/README.md b/README.md index 69e6af0..f235539 100644 --- a/README.md +++ b/README.md @@ -17,9 +17,10 @@ OPTIONS ## how to compile -- `make` -- (optional) `sudo make install` -- yeag +- get a c compiler (i use gcc or clang) +- `gcc -o ./allocatememory -O2 ./main.c` +- ??? +- profit ## why