1 #
   2 # Copyright 2007 Sun Microsystems, Inc.  All rights reserved.
   3 #  Use is subject to license terms.
   4 #
   5 
   6 PROG=           chat
   7 OBJS=           chat.o
   8 SRCS=           $(OBJS:%.o=%.c)
   9 
  10 include         ../../../Makefile.cmd
  11 
  12 CPPFLAGS +=     -DSOL2
  13 LDFLAGS +=      $(MAPFILE.NGB:%=-M%)
  14 CERRWARN +=     -_gcc=-Wno-unused-value
  15 CERRWARN +=     -_gcc=-Wno-trigraphs
  16 
  17 .KEEP_STATE:
  18 
  19 all: $(PROG)
  20 
  21 install: all $(ROOTPROG)
  22 
  23 clean:
  24         $(RM) $(OBJS)
  25 
  26 lint:   
  27 
  28 include         ../../../Makefile.targ