Tyrolyean
f0ffbc7c33
The fortify source code was added to prevent builds from passing but then failing in our build system and the c-standard was set to c11 to avoid the compiler yelling at me whenever i want to print a size_t. Signed-off-by: Tyrolyean <tyrolyean@tyrolyean.net>
12 lines
313 B
Makefile
12 lines
313 B
Makefile
CFLAGS = -std=c11 -pedantic -Wall -Wextra -O2 -Ofast -D_DEFAULT_SOURCE -D_FORTIFY_SOURCE=2
|
|
LDFLAGS = -lX11 -lGL -lGLEW -lm -lrt
|
|
|
|
shadermeh: shadermeh.o window.o shader.o
|
|
|
|
window.o: window.c shadermeh.h
|
|
shader.o: shader.c shadermeh.h
|
|
shadermeh.o: shadermeh.c shadermeh.h
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
$(RM) shadermeh *.o
|