1*7c478bd9Sstevel@tonic-gate# 2*7c478bd9Sstevel@tonic-gate#ident "%Z%%M% %I% %E% SMI" 3*7c478bd9Sstevel@tonic-gate# 4*7c478bd9Sstevel@tonic-gate# Copyright (c) 2000 by Sun Microsystems, Inc. 5*7c478bd9Sstevel@tonic-gate# All rights reserved. 6*7c478bd9Sstevel@tonic-gate# 7*7c478bd9Sstevel@tonic-gate 8*7c478bd9Sstevel@tonic-gatePROG= chat 9*7c478bd9Sstevel@tonic-gateOBJS= chat.o 10*7c478bd9Sstevel@tonic-gateSRCS= $(OBJS:%.o=%.c) 11*7c478bd9Sstevel@tonic-gate 12*7c478bd9Sstevel@tonic-gateinclude ../../../Makefile.cmd 13*7c478bd9Sstevel@tonic-gate 14*7c478bd9Sstevel@tonic-gateCPPFLAGS += -DSOL2 15*7c478bd9Sstevel@tonic-gate 16*7c478bd9Sstevel@tonic-gate.KEEP_STATE: 17*7c478bd9Sstevel@tonic-gate 18*7c478bd9Sstevel@tonic-gateall: $(PROG) 19*7c478bd9Sstevel@tonic-gate 20*7c478bd9Sstevel@tonic-gateinstall: all $(ROOTPROG) 21*7c478bd9Sstevel@tonic-gate 22*7c478bd9Sstevel@tonic-gateclean: 23*7c478bd9Sstevel@tonic-gate $(RM) $(OBJS) 24*7c478bd9Sstevel@tonic-gate 25*7c478bd9Sstevel@tonic-gatelint: 26*7c478bd9Sstevel@tonic-gate 27*7c478bd9Sstevel@tonic-gateinclude ../../../Makefile.targ 28