30 lines
663 B
Makefile
30 lines
663 B
Makefile
# Install
|
|
BIN = demo
|
|
|
|
# Flags
|
|
CFLAGS += -std=c89 -Wall -Wextra -pedantic -O2
|
|
|
|
SRC = main.c
|
|
OBJ = $(SRC:.c=.o)
|
|
|
|
ifeq ($(OS),Windows_NT)
|
|
BIN := $(BIN).exe
|
|
LIBS = -lglfw3 -lvulkan -lm
|
|
else
|
|
UNAME_S := $(shell uname -s)
|
|
GLFW3 := $(shell pkg-config --libs glfw3)
|
|
LIBS = $(GLFW3) -lvulkan -lm
|
|
endif
|
|
|
|
|
|
$(BIN): shaders/demo.vert.spv shaders/demo.frag.spv
|
|
@mkdir -p bin
|
|
rm -f bin/$(BIN) $(OBJS)
|
|
$(CC) $(SRC) $(CFLAGS) -o bin/$(BIN) $(LIBS)
|
|
|
|
shaders/demo.vert.spv: shaders/demo.vert
|
|
glslc --target-env=vulkan shaders/demo.vert -o shaders/demo.vert.spv
|
|
|
|
shaders/demo.frag.spv: shaders/demo.frag
|
|
glslc --target-env=vulkan shaders/demo.frag -o shaders/demo.frag.spv
|