comparison src/tee/Makefile @ 7:3fc0f57ecb91 v7.0001

updated for version 7.0001
author vimboss
date Sun, 13 Jun 2004 20:20:40 +0000
parents
children d95d6580d84b
comparison
equal deleted inserted replaced
6:c2daee826b8f 7:3fc0f57ecb91
1 # A very (if not the most) simplistic Makefile for OS/2
2
3 CC=gcc
4 CFLAGS=-O2 -fno-strength-reduce
5
6 tee.exe: tee.o
7 $(CC) $(CFLAGS) -s -o $@ $<
8
9 tee.o: tee.c
10 $(CC) $(CFLAGS) -c $<
11
12 clean:
13 - del tee.o
14 - del tee.exe
15