modularity problem
This commit is contained in:
parent
57e9b91c4c
commit
b628beafb9
4 changed files with 74 additions and 57 deletions
5
makefile
5
makefile
|
|
@ -1,8 +1,9 @@
|
|||
CFLAGS=$(shell cat compiler_flags.txt)
|
||||
FILES=$(wildcard src/*.cpp)
|
||||
|
||||
build/raylib-test-linux.x86_64 : src/main.cpp
|
||||
build/raylib-test-linux.x86_64 : $(FILES)
|
||||
mkdir -p build
|
||||
clang src/main.cpp $(CFLAGS) -o build/raylib-test-linux.x86_64
|
||||
clang $(FILES) $(CFLAGS) -o build/raylib-test-linux.x86_64
|
||||
|
||||
|
||||
clean :
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue