summaryrefslogblamecommitdiff
path: root/pgm7/makefile
blob: 3a3a73c604309eece9894481576506eabd840daf (plain) (tree)




















                                      
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