Compare commits

...

2 commits
v1.3.0 ... main

Author SHA1 Message Date
3a6e764c0b
update readme 2025-03-25 00:07:21 +00:00
665cc326ae
add makefile 2025-03-24 23:58:18 +00:00
3 changed files with 15 additions and 4 deletions

1
.gitignore vendored
View file

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

11
Makefile Normal file
View file

@ -0,0 +1,11 @@
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,10 +17,9 @@ OPTIONS
## how to compile ## how to compile
- get a c compiler (i use gcc or clang) - `make`
- `gcc -o ./allocatememory -O2 ./main.c` - (optional) `sudo make install`
- ??? - yeag
- profit
## why ## why