diff options
author | justanothercatgirl <sotov@twistea.su> | 2024-12-06 16:24:22 +0300 |
---|---|---|
committer | justanothercatgirl <sotov@twistea.su> | 2024-12-06 16:24:22 +0300 |
commit | d62443adaba86f94866e5d3f4eaf4e113a13e6fc (patch) | |
tree | b9b2f21803da166f43ab60ad91627055b5340cf0 /7_1/Makefile | |
parent | 24b8430fa7a9a81b88c5c172c99bbc9a520ff4ba (diff) |
added 7.1
Diffstat (limited to '7_1/Makefile')
-rw-r--r-- | 7_1/Makefile | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/7_1/Makefile b/7_1/Makefile new file mode 100644 index 0000000..80b3f39 --- /dev/null +++ b/7_1/Makefile @@ -0,0 +1,29 @@ + +all: test + +.PHONY: test clean + +test: task7_1 + ./$< 69 + ./$< 429 + ./$< 828 + ./$< 425729 + ./$< 235723572579 + ./$< 000111222333 + ./$< 1048575 + ./$< 1048576 + ./$< -31273891273891273 + ./$< -000000000000000000 + ./$< -2313423 + ./$< -123 + - ./$< -9223372036854775809 + ./$< -9223372036854775807 + - ./$< -9223372036854775808 + ./$< -1048576 + ./$< -1048575 + + +task7_1: main.c + cc -o task7_1 main.c + + |