diff options
author | Yannick Gicquel <yannick.gicquel@iot.bzh> | 2016-05-10 11:49:31 +0200 |
---|---|---|
committer | Yannick Gicquel <yannick.gicquel@iot.bzh> | 2016-05-10 11:49:37 +0200 |
commit | 87cdfd4626c0cb47fc22f328867e49d6268df85c (patch) | |
tree | dc90d9a17af901b8872b4bb50e6c2c9c31916611 /linus_stress/Makefile | |
parent | b355b7e1f43a19938895964f314484ffd8a39542 (diff) |
linus_stress: add whole subdir
Upstream is at this location:
https://chromium.googlesource.com/chromiumos/third_party/autotest/+/master/client/tests/linus_stress/
Signed-off-by: Yannick Gicquel <yannick.gicquel@iot.bzh>
Diffstat (limited to 'linus_stress/Makefile')
-rw-r--r-- | linus_stress/Makefile | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/linus_stress/Makefile b/linus_stress/Makefile new file mode 100644 index 0000000..9116aae --- /dev/null +++ b/linus_stress/Makefile @@ -0,0 +1,13 @@ +CFLAGS = -O2 -Wall -D_POSIX_C_SOURCE=200112 +TARGET = linus_stress + + +all: $(TARGET) + + +$(TARGET): linus_stress.c + $(CC) $(CFLAGS) $^ -o $@ + + +clean: + $(RM) $(TARGET) |