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

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

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

clean:
	@rm -rf target

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

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


.PHONY: build user_install install