Initial commit
This commit is contained in:
commit
c4fc4b2a65
4 changed files with 15 additions and 0 deletions
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,2 @@
|
||||||
|
build/
|
||||||
|
|
||||||
2
compiler_flags.txt
Normal file
2
compiler_flags.txt
Normal file
|
|
@ -0,0 +1,2 @@
|
||||||
|
-Wall
|
||||||
|
-lraylib
|
||||||
3
main.cpp
Normal file
3
main.cpp
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
int main() {
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
8
makefile
Normal file
8
makefile
Normal file
|
|
@ -0,0 +1,8 @@
|
||||||
|
CFLAGS=$(cat compiler_flags.txt//"\n"/" ")
|
||||||
|
|
||||||
|
build/raylib-test-linux.x86_64 : main.cpp
|
||||||
|
mkdir -p build
|
||||||
|
clang main.cpp $(CFLAGS) -o build/raylib-test-linux.x86_64
|
||||||
|
|
||||||
|
clean :
|
||||||
|
rm -r build/*
|
||||||
Loading…
Add table
Add a link
Reference in a new issue