diff options
Diffstat (limited to 'ipv6connect/Makefile')
-rw-r--r-- | ipv6connect/Makefile | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/ipv6connect/Makefile b/ipv6connect/Makefile new file mode 100644 index 0000000..2a0445e --- /dev/null +++ b/ipv6connect/Makefile @@ -0,0 +1,13 @@ +CFLAGS = -O2 -Wall +TARGET = ipv6connect + + +all: $(TARGET) + + +$(TARGET): ipv6connect.c + $(CC) $(CFLAGS) $^ -o $@ -lpthread + + +clean: + $(RM) $(TARGET) |