minix/commands/rlogind/Makefile

25 lines
330 B
Makefile
Raw Normal View History

2005-04-21 16:53:53 +02:00
# Makefile for rlogind.
CFLAGS = $(OPT) -D_MINIX
2005-09-07 10:43:25 +02:00
CC = exec cc
2005-04-21 16:53:53 +02:00
LDFLAGS =
all: rlogind
OBJ= rlogind.o setup.o
rlogind: $(OBJ)
$(CC) $(LDFLAGS) -o $@ $(OBJ)
2005-10-24 16:06:36 +02:00
install -S 8kw $@
2005-04-21 16:53:53 +02:00
install: /usr/bin/in.rlogind
/usr/bin/in.rlogind: rlogind
install -c $? $@
clean:
rm -f *.o rlogind core a.out
# Dependencies.
$(OBJ): rlogind.h