diff options
Diffstat (limited to 'ctoclean/Makefile')
-rw-r--r-- | ctoclean/Makefile | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/ctoclean/Makefile b/ctoclean/Makefile new file mode 100644 index 0000000..7c7047a --- /dev/null +++ b/ctoclean/Makefile @@ -0,0 +1,13 @@ +all: + mkdir -p Clean\ System\ Files + $(CC) -c call.c -o Clean\ System\ Files/call.o + clm square -o square + +run: + ./square + +clean: + rm -rf Clean\ System\ Files square + +.PHONY: clean + |