@@ -0,0 +1,8 @@
+parrotsay : parrotsay.o
+ cc -o parrotsay parrotsay.o
+
+parrotsay.o : parrotsay.c
+ cc -c parrotsay.c
+clean :
+ rm parrotsay parrotsay.o
@@ -17,8 +17,4 @@ This has been tested only with:
To build just do
- gcc parrotsay.c -o parrotsay
-
-Or
- clang parrotsay.c -o parrotsay
+ make