source:
trunk/minix/commands/telnet/Makefile@
10
Last change on this file since 10 was 9, checked in by , 13 years ago | |
---|---|
File size: 281 bytes |
Line | |
---|---|
1 | # Makefile for telnet |
2 | |
3 | CFLAGS= -D_MINIX -D_POSIX_SOURCE |
4 | LDFLAGS=-i |
5 | CC = exec cc |
6 | |
7 | SRC= ttn.c ttn_conf.c |
8 | |
9 | all: ttn |
10 | |
11 | ttn: $(SRC) |
12 | $(CC) $(CFLAGS) $(LDFLAGS) -o ttn $(SRC) |
13 | install -S 4kw $@ |
14 | |
15 | clean: |
16 | rm -f ttn |
17 | |
18 | install: /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.