summaryrefslogtreecommitdiff
path: root/pgm7/makefile
blob: 3a3a73c604309eece9894481576506eabd840daf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
CC=gcc
CFLAGS=-g -Wall

all:	TTT ttt

TTT:	TTT.o msg.o
	gcc -o TTT TTT.o msg.o

ttt:	ttt.o msg.o child.o
	gcc -o ttt ttt.o msg.o child.o

msg.o:	msg.c common.h

TTT.o:	TTT.c common.h

ttt.o:	ttt.c common.h

child.o: child.c child.h

clean:
	rm -f *.o ttt TTT serverloc