14 lines
257 B
Makefile
14 lines
257 B
Makefile
CFLAGS = -std=c++03 -O2
|
|
LDFLAGS = -lglfw -lvulkan -ldl -lpthread -lX11 -lXxf86vm -lXrandr -lXi
|
|
|
|
1.1: main.cpp
|
|
c++ $(CFLAGS) -o inlinefunctions main.cpp $(LDFLAGS)
|
|
|
|
.PHONY: test clean
|
|
|
|
test: inlinefunctions
|
|
./inlinefunctions
|
|
|
|
clean:
|
|
rm -f inlinefunctions
|