diff options
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) |