ae75f9d4e5
- 755 -> 644
24 lines
330 B
Makefile
24 lines
330 B
Makefile
# Makefile for rlogind.
|
|
|
|
CFLAGS = $(OPT) -D_MINIX
|
|
CC = exec cc
|
|
LDFLAGS =
|
|
|
|
all: rlogind
|
|
|
|
OBJ= rlogind.o setup.o
|
|
|
|
rlogind: $(OBJ)
|
|
$(CC) $(LDFLAGS) -o $@ $(OBJ)
|
|
install -S 8kw $@
|
|
|
|
install: /usr/bin/in.rlogind
|
|
|
|
/usr/bin/in.rlogind: rlogind
|
|
install -c $? $@
|
|
|
|
clean:
|
|
rm -f *.o rlogind core a.out
|
|
|
|
# Dependencies.
|
|
$(OBJ): rlogind.h
|