aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2016-03-02 15:01:23 +1300
committerTom Ryder <tom@sanctum.geek.nz>2016-03-02 15:01:23 +1300
commite0004acd1a952ef12fb1fba078caa13df492edf4 (patch)
treedc676890aab52d75fd9abb646b0e02cf222429a5
parentCorrect some pedantic errors (diff)
downloadcat-e0004acd1a952ef12fb1fba078caa13df492edf4.tar.gz
cat-e0004acd1a952ef12fb1fba078caa13df492edf4.zip
Clean up Makefile a bit
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 218c2ed..81db4b5 100644
--- a/Makefile
+++ b/Makefile
@@ -2,8 +2,8 @@ CC = gcc
CFLAGS = -Wall -Wpedantic -ansi -pedantic-errors
cat : main.o cfn.o cfd.o
- gcc $(CFLAGS) -o cat main.o cfn.o cfd.o
+ $(CC) $(CFLAGS) -o cat main.o cfn.o cfd.o
clean :
- rm -f -- cat *.o
+ rm -f -- *.o cat