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