kge/Makefile

16 lines
268 B
Makefile
Raw Normal View History

2023-10-09 05:29:47 +00:00
.PHONY: all
all:
2023-10-09 11:49:55 +00:00
mkdir -p build && cd build && cmake .. && make
2023-10-09 05:29:47 +00:00
PHONY: deps
2023-10-09 05:29:47 +00:00
deps:
sudo apt-get install doxygen scdoc
2023-10-09 05:29:47 +00:00
.PHONY: gui-deps
gui-deps:
sudo apt-get install libfreetype-dev libsdl2-dev libopengl-dev libglfw3-dev
.PHONY:
clean:
rm -r build cmake-build-*