mirror of
http://git.davidovski.xyz/rope
synced 2024-08-15 00:43:42 +00:00
added a loop
This commit is contained in:
commit
d451c04331
2 changed files with 134 additions and 0 deletions
14
Makefile
Normal file
14
Makefile
Normal file
|
@ -0,0 +1,14 @@
|
|||
PROG=rope
|
||||
CC=gcc
|
||||
FLAGS=-lm -lraylib
|
||||
|
||||
.DEFAULT_GOAL := build
|
||||
|
||||
install: ${PROG}
|
||||
cp ${PROG} ~/.local/bin/
|
||||
|
||||
build: ${PROG}.c
|
||||
${CC} ${PROG}.c -o ${PROG} ${FLAGS}
|
||||
|
||||
clean: ${PROG}
|
||||
rm ${PROG}
|
Loading…
Add table
Add a link
Reference in a new issue