$ cat hello.c
main(){puts("hello,world");}

$ make hello && ./hello
gcc hello.c -o hello
hello,world