diff options
author | David Timber <dxdt@dev.snart.me> | 2024-11-27 12:01:22 +0100 |
---|---|---|
committer | David Timber <dxdt@dev.snart.me> | 2024-11-27 12:01:55 +0100 |
commit | 4b60d5c2a43c0683154818bfda8b1cfe06a3c861 (patch) | |
tree | 9a9ab8645985375e639a27ac4168bc89f8a8d5d0 /writeups/ipv6/eyeball/Makefile | |
parent | 4c6930d481264d7f52d7502d8e6009f39a23a338 (diff) |
Patch writeups/ipv6/eyeball ...
- Fix -h option
- Add "clean" target
- In poll_result(): break on error
Diffstat (limited to 'writeups/ipv6/eyeball/Makefile')
-rw-r--r-- | writeups/ipv6/eyeball/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/writeups/ipv6/eyeball/Makefile b/writeups/ipv6/eyeball/Makefile index 939a53d..14ccb9d 100644 --- a/writeups/ipv6/eyeball/Makefile +++ b/writeups/ipv6/eyeball/Makefile @@ -1,3 +1,8 @@ - eyeball: eyeball.c cc -g -O0 -Wall -Wextra eyeball.c -o eyeball + +.PHONY: clean + +clean: + rm -f eyeball + |