2024-08-25 11:27:24 -06:00

14 lines
232 B
Makefile

CFLAGS = -std=c++03 -O2
LDFLAGS = -lglfw -lvulkan -ldl -lpthread -lX11 -lXxf86vm -lXrandr -lXi
1.1: main.cpp
g++ $(CFLAGS) -o error main.cpp $(LDFLAGS)
.PHONY: test clean
test: helloworld
./helloworld
clean:
rm -f helloworld