From 87cdfd4626c0cb47fc22f328867e49d6268df85c Mon Sep 17 00:00:00 2001 From: Yannick Gicquel Date: Tue, 10 May 2016 11:49:31 +0200 Subject: 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 --- linus_stress/Makefile | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 linus_stress/Makefile (limited to 'linus_stress/Makefile') 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) -- cgit 1.2.3-korg