source: trunk/minix/commands/rlogind/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: 330 bytes
Line 
1# Makefile for rlogind.
2
3CFLAGS = $(OPT) -D_MINIX
4CC = exec cc
5LDFLAGS =
6
7all: rlogind
8
9OBJ= rlogind.o setup.o
10
11rlogind: $(OBJ)
12 $(CC) $(LDFLAGS) -o $@ $(OBJ)
13 install -S 8kw $@
14
15install: /usr/bin/in.rlogind
16
17/usr/bin/in.rlogind: rlogind
18 install -c $? $@
19
20clean:
21 rm -f *.o rlogind core a.out
22
23# Dependencies.
24$(OBJ): rlogind.h
Note: See TracBrowser for help on using the repository browser.