From 379c2c17e68d5d471a6a9673b7e9cd1fb9d99bbb Mon Sep 17 00:00:00 2001
From: 53hornet <53hornet@gmail.com>
Date: Sat, 2 Feb 2019 22:59:54 -0500
Subject: Init.

---
 pgm4/makefile | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)
 create mode 100644 pgm4/makefile

(limited to 'pgm4/makefile')

diff --git a/pgm4/makefile b/pgm4/makefile
new file mode 100644
index 0000000..645618f
--- /dev/null
+++ b/pgm4/makefile
@@ -0,0 +1,19 @@
+all: tttmsg.o ttt.o TTT.o ttt TTT
+
+tttmsg.o: tttmsg.c
+	gcc -Wall -g -c tttmsg.c
+
+ttt.o: ttt.c
+	gcc -Wall -g -c ttt.c
+
+TTT.o: TTT.c
+	gcc -Wall -g -c TTT.c
+
+ttt: ttt.c
+	gcc -Wall -o ttt ttt.o tttmsg.o
+
+TTT: TTT.c
+	gcc -Wall -o TTT TTT.o tttmsg.o
+
+clean:
+	rm -f ttt TTT tttmsg.o ttt.o TTT.o
-- 
cgit v1.2.3