mirror of
https://git.davidovski.xyz/rectangles.git
synced 2024-08-15 00:43:36 +00:00
Generate non-overlapping collisions
This commit is contained in:
commit
83e3b21ae6
3 changed files with 171 additions and 0 deletions
15
Makefile
Normal file
15
Makefile
Normal file
|
@ -0,0 +1,15 @@
|
|||
PROG=rectangles
|
||||
CC=gcc
|
||||
FLAGS=-lm -lraylib
|
||||
|
||||
.DEFAULT_GOAL := build
|
||||
|
||||
install: ${PROG}
|
||||
cp ${PROG} ${PREFIX}/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