Grid base
This commit is contained in:
parent
76284d80b9
commit
0432d6932c
11 changed files with 81 additions and 14 deletions
5
makefile
5
makefile
|
|
@ -1,9 +1,10 @@
|
|||
CFLAGS=$(shell cat compiler_flags.txt)
|
||||
CP=clang
|
||||
CFLAGS=$(shell cat compiler_flags.txt | tr '\n' ' ')
|
||||
FILES=$(wildcard src/*.cpp)
|
||||
|
||||
build/raylib-test-linux.x86_64 : $(FILES)
|
||||
mkdir -p build
|
||||
clang $(FILES) $(CFLAGS) -o build/raylib-test-linux.x86_64
|
||||
$(CP) $(FILES) $(CFLAGS) -o build/raylib-test-linux.x86_64
|
||||
|
||||
|
||||
clean :
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue