diff options
| author | Amos Jianjun Kong <kongjianjun@gmail.com> | 2023-12-17 14:12:39 +0000 |
|---|---|---|
| committer | Amos Jianjun Kong <kongjianjun@gmail.com> | 2023-12-17 14:12:39 +0000 |
| commit | 13a9ead504480724c88e3219b35970d9ef9f8444 (patch) | |
| tree | 6c972ef79e96ac32d2d6870053405fe5a02e65db | |
| download | example-master.tar.gz example-master.tar.xz example-master.zip | |
Signed-off-by: Amos Jianjun Kong <kongjianjun@gmail.com>
| -rw-r--r-- | Makefile | 4 | ||||
| -rw-r--r-- | hello.c | 7 |
2 files changed, 11 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..376cafd --- /dev/null +++ b/Makefile @@ -0,0 +1,4 @@ +all: + gcc hello.c -o hello +cleaup: + rm -f ./hello @@ -0,0 +1,7 @@ +#include <stdio.h> + +int main(void) +{ + printf("hello, world!\n"); + return 0; +} |
