forked from goliath/shadermeh
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
301 B
Makefile
13 lines
301 B
Makefile
CFLAGS = -std=c11 -pedantic -Wall -Wextra -O2 -Ofast -D_DEFAULT_SOURCE
|
|
LDFLAGS = -lX11 -lGL -lGLEW -lfftw3 -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
|