diff options
author | Yannick Gicquel <yannick.gicquel@iot.bzh> | 2016-05-10 11:19:00 +0200 |
---|---|---|
committer | Yannick Gicquel <yannick.gicquel@iot.bzh> | 2016-05-10 11:19:03 +0200 |
commit | b355b7e1f43a19938895964f314484ffd8a39542 (patch) | |
tree | 4bf5e39912621739bd9485f0197aa06934fbfa4d /ipv6connect/Makefile | |
parent | 920cae73a918d1f516113b0ae967be3ecaba86ef (diff) |
ipv6connect: add whole subdir
The upstream project is at this location:
https://chromium.googlesource.com/chromiumos/third_party/autotest/+/0.12.369.B/client/tests/ipv6connect
Signed-off-by: Yannick Gicquel <yannick.gicquel@iot.bzh>
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) |