14 lines
237 B
Makefile
Raw Normal View History

2024-08-25 12:32:57 -06:00
CFLAGS = -std=c++03 -O2
LDFLAGS = -lglfw -lvulkan -ldl -lpthread -lX11 -lXxf86vm -lXrandr -lXi
1.1: main.cpp
c++ $(CFLAGS) -o helloworld main.cpp $(LDFLAGS)
.PHONY: test clean
test: helloworld
./helloworld
clean:
rm -f helloworld