Compare commits

..

No commits in common. "main" and "v1.3.0" have entirely different histories.
main ... v1.3.0

3 changed files with 4 additions and 15 deletions

1
.gitignore vendored
View file

@ -1,4 +1,3 @@
*.exe *.exe
**/.DS_Store **/.DS_Store
bin/ bin/
melody-allocator

View file

@ -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)

View file

@ -17,9 +17,10 @@ OPTIONS
## how to compile ## how to compile
- `make` - get a c compiler (i use gcc or clang)
- (optional) `sudo make install` - `gcc -o ./allocatememory -O2 ./main.c`
- yeag - ???
- profit
## why ## why