mirror of
https://github.com/collabora/libsurvive.git
synced 2026-08-04 00:51:21 -04:00
13 lines
221 B
Makefile
13 lines
221 B
Makefile
all: build
|
|
|
|
build:
|
|
mkdir -p bin
|
|
cd bin && cmake -DCMAKE_BUILD_TYPE=RelWithDebInfo .. && cmake --build . -j 4
|
|
|
|
install: build
|
|
cd bin && cmake --build . --target install
|
|
|
|
clean:
|
|
rm -rf bin
|
|
|
|
.PHONY: build install clean
|