view src/tee/Makefile @ 13677:4efb4683ea71

Added tag v8.0.1710 for changeset 6b49b6ea9e43610292386a41f12e62bee8d5bbc3
author Christian Brabandt <cb@256bit.org>
date Sat, 14 Apr 2018 16:15:07 +0200
parents 3fc0f57ecb91
children d95d6580d84b
line wrap: on
line source

# 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