Maploading
This commit is contained in:
parent
73bf0d83e1
commit
a2dffd7cb9
8 changed files with 82 additions and 36 deletions
8
makefile
8
makefile
|
|
@ -2,9 +2,11 @@ CP=clang
|
|||
CFLAGS=$(shell cat compiler_flags.txt | tr '\n' ' ')
|
||||
FILES=$(wildcard src/*.cpp)
|
||||
|
||||
build/raylib-test-linux.x86_64 : $(FILES)
|
||||
mkdir -p build
|
||||
$(CP) $(FILES) $(CFLAGS) -o build/raylib-test-linux.x86_64
|
||||
.PHONY : clean cross-windows
|
||||
|
||||
build/linux/raylib-test-linux.x86_64 : $(FILES)
|
||||
mkdir -p build/linux
|
||||
$(CP) $(FILES) $(CFLAGS) -o build/linux/raylib-test-linux.x86_64
|
||||
|
||||
|
||||
clean :
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue