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