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

default_target: build

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

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

clean:
	@rm -rf target

install:
	install ./target/webtray ${DESTDIR}/usr/bin/webtray
	install ./webtrayctl ${DESTDIR}/usr/bin/webtrayctl


.PHONY: build install