diff options
author | Camil Staps | 2016-11-08 15:40:33 +0100 |
---|---|---|
committer | Camil Staps | 2016-11-08 15:42:34 +0100 |
commit | 39b3f17376c032d81bbfedfb9c07acc68c2e32ca (patch) | |
tree | 350ac9a56eed20be24a1f044d51e483bb3ea1571 /ctoclean/Makefile | |
parent | Overloaded constructors (diff) |
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 |