summaryrefslogtreecommitdiff
path: root/pgm4/inet_streams.d/Makefile
blob: 72c101dec0217cbc9f714ce32e786c39269a3357 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
CC=gcc
CFLAGS=-g -Wall

all: inet_rstream inet_wstream

inet_rstream: inet_rstream.o
	$(CC) -o inet_rstream inet_rstream.o

inet_wstream: inet_wstream.o
	$(CC) -o inet_wstream inet_wstream.o

clean:
	rm -f *.o inet_rstream inet_wstream