houndsniff

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit 46bf1857438a133436ef7ce807f7a3eefdfbd3b3
parent 2aa332f8f2c405a1ff2aabe0b6a49dd8f6b2525f
Author: MichaelDim02 <31562759+MichaelDim02@users.noreply.github.com>
Date:   Wed, 10 Mar 2021 11:31:51 +0000

Update Makefile
Diffstat:
Msrc/Makefile | 16+++++-----------
1 file changed, 5 insertions(+), 11 deletions(-)

diff --git a/src/Makefile b/src/Makefile @@ -1,13 +1,7 @@ -output: main.o select.o - gcc main.o select.o -o hound - sudo cp houndsniff.1 /usr/share/man/man1 - sudo mandb +output: main.c select.c + gcc main.c select.c -o hound -main.o: main.c - gcc -c main.c +install: houndsniff.1 + sudo cp houndsniff.1 /usr/share/man/man1 + sudo mandb -select.o: select.c select.h - gcc -c select.c - -clean: - rm *.o hound