aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: c2276208c469d290fb7a5e28b1cdf23b5af86565 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
default_target: build

build:
	@mkdir -p target
	@cd target && qmake6 .. && make

run: build
	./target/webtray ${URL}

user_install: build
	install ./target/webtray ~/.local/bin/webtray

install:
	install ./target/webtray /usr/local/bin/webtray


.PHONY: build user_install install