diff options
Diffstat (limited to 'ctoclean/Makefile')
-rw-r--r-- | ctoclean/Makefile | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/ctoclean/Makefile b/ctoclean/Makefile index 7c7047a..7290fcb 100644 --- a/ctoclean/Makefile +++ b/ctoclean/Makefile @@ -1,13 +1,12 @@ all: mkdir -p Clean\ System\ Files $(CC) -c call.c -o Clean\ System\ Files/call.o - clm square -o square + clm -l Clean\ System\ Files/call.o square -o square run: ./square clean: - rm -rf Clean\ System\ Files square - -.PHONY: clean + $(RM) -r Clean\ System\ Files square +.PHONY: all clean run |