k9core

Unnamed repository
Log | Files | Refs | LICENSE

commit 7db446d13c68dd7a07c7847d74900e7dd60fd45d
parent ff4f7c12663ae9e16ea1449f345aae9a6c9016a7
Author: call-cc <callcc@vxempire.xyz>
Date:   Mon,  1 Jun 2020 16:07:35 -0400

Add makefile

Diffstat:
Asrc/Makefile | 7+++++++
1 file changed, 7 insertions(+), 0 deletions(-)

diff --git a/src/Makefile b/src/Makefile @@ -0,0 +1,7 @@ +CCCOMPILER: cc + +compile: + cc echo.c -o echo + cc touch.c -o touch + cc pwd.c -o pwd + cc cat.c -o cat