File: Makefile.sol2

package info (click to toggle)
ppp 2.4.5-4%2Bdeb6u2
  • links: PTS
  • area: main
  • in suites: squeeze-lts
  • size: 3,808 kB
  • ctags: 5,983
  • sloc: ansic: 54,378; sh: 1,030; perl: 250; makefile: 132; exp: 82
file content (19 lines) | stat: -rw-r--r-- 263 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#
# Makefile for chat on Solaris 2
#

include ../Makedefs.com

CFLAGS = $(COPTS) -DNO_USLEEP -DSOL2

all:	chat

chat: chat.o
	$(CC) -o chat chat.o

install: chat
	$(INSTALL) -f $(BINDIR) chat
	$(INSTALL) -m 444 -f $(MANDIR)/man8 chat.8

clean:
	rm -f *~ *.o chat