source: trunk/minix/commands/telnet/Makefile@ 9

Last change on this file since 9 was 9, checked in by Mattia Monga, 13 years ago

Minix 3.1.2a

File size: 281 bytes
Line 
1# Makefile for telnet
2
3CFLAGS= -D_MINIX -D_POSIX_SOURCE
4LDFLAGS=-i
5CC = exec cc
6
7SRC= ttn.c ttn_conf.c
8
9all: ttn
10
11ttn: $(SRC)
12 $(CC) $(CFLAGS) $(LDFLAGS) -o ttn $(SRC)
13 install -S 4kw $@
14
15clean:
16 rm -f ttn
17
18install: /usr/bin/telnet
19
20/usr/bin/telnet: ttn
21 install -cs -o bin ttn $@
Note: See TracBrowser for help on using the repository browser.