Move install target below so it's not a default make target

This commit is contained in:
Solene Rapenne 2020-12-02 20:02:07 +01:00
parent 64912e9f6e
commit b052105b2b
1 changed files with 3 additions and 3 deletions

View File

@ -1,8 +1,5 @@
PREFIX?=/usr/local/
install: vger
install -o root -g wheel vger ${PREFIX}/bin/
all: vger
clean:
@ -10,6 +7,9 @@ clean:
vger: main.c
${CC} -o vger main.c
install: vger
install -o root -g wheel vger ${PREFIX}/bin/
test: vger
cd tests && sh test.sh