diff options
| author | Miguel <m.i@gmx.at> | 2025-01-08 19:40:58 +0100 |
|---|---|---|
| committer | Miguel <m.i@gmx.at> | 2025-01-08 19:40:58 +0100 |
| commit | 8531fd495adf4ab6c9d682e11a8003f431f48853 (patch) | |
| tree | 90cc560148ca73e258eda9026527eae2ff3045dc /Makefile | |
initial
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..6617567 --- /dev/null +++ b/Makefile @@ -0,0 +1,11 @@ +CFLAGS = -std=c++17 -O2 -g +LDFLAGS = -lglfw -lvulkan -ldl -lpthread -lX11 -lXxf86vm -lXrandr -lXi +VulkanTest: main.cpp + g++ $(CFLAGS) -o VulkanTest main.cpp $(LDFLAGS) +.PHONY: test clean + +test: VulkanTest + ./VulkanTest + +clean: + rm -f VulkanTest |
