blob: 7e5641e34a20c123984c882284cc07c05f178b67 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
.PHONY: all
all: select-target
.PHONY: aggressive
.PHONY: coop
.PHONY: infest
infest: aggressive
aggressive:
infest/etc_aggressive
infest/home
coop:
infest/etc_coop
infest/home
install-debian:
[ `which git` ] || apt-get install git-core
[ `which tmux` ] || apt-get install tmux
[ `which screen` ] && apt-get remote screen
[ `which vim` ] || apt-get install vim
noise:
make -C modules/noise infest
|