Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Makefile - github.com/jangernert/FeedReader.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 03edc2ba9f4f19f348349e234a2d510408d47101 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
default: build

builddir:
	meson builddir

build: builddir
	ninja -C builddir

install: build
	ninja -C builddir install

uninstall:
	ninja -C builddir uninstall

test: build
	ninja -C builddir test

.PHONY: build install uninstall test