melody-allocator/Makefile
2025-03-24 23:58:18 +00:00

11 lines
168 B
Makefile

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)