blob: d31a7c9d3e6ae309b5a7542575570300306308f8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
.PHONY: all
all: select-target
.PHONY: infest
infest:
infest/etc
infest/root
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
|