diff src/tee/Makefile @ 0:76efa0be13f1

Initial revision
author atsuki
date Sat, 10 Nov 2007 15:07:22 +0900
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/tee/Makefile	Sat Nov 10 15:07:22 2007 +0900
@@ -0,0 +1,15 @@
+# A very (if not the most) simplistic Makefile for OS/2
+
+CC=gcc
+CFLAGS=-O2 -fno-strength-reduce
+
+tee.exe: tee.o
+	$(CC) $(CFLAGS) -s -o $@ $<
+
+tee.o: tee.c
+	$(CC) $(CFLAGS) -c $<
+
+clean:
+	- del tee.o
+	- del tee.exe
+