aboutsummaryrefslogtreecommitdiffstats
path: root/os/linux/Makefile
blob: b70676861185438ea122210e409cfd7b39246997 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
yetihack: src/YetiHack.cpp src/yeti.cpp
	cd src && make

package: yetihack
	strip src/yetihack
	zip -j package/yetihack.zip src/yetihack
	mkdir package/yetihack
	cp src/yetihack package/yetihack/yetihack
	cd package && tar -caf yetihack.tar.gz yetihack
	rm -r package/yetihack

install: yetihack
	cp src/yetihack /usr/local/bin/

clean:
	-rm src/*.o
	-rm src/yetihack
	-rm package/*