aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 358472e79c28c8a5064bb5042188f32020cc3958 (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}

clean:
	@rm -rf target

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


.PHONY: build install