source: trunk/minix/commands/reboot/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: 898 bytes
Line 
1# Makefile for shutdown / halt / reboot.
2
3CFLAGS=$(OPT) -D_MINIX -D_POSIX_SOURCE
4LDFLAGS=-i
5CC=exec cc
6
7PROGRAMS= shutdown halt tinyhalt
8MANUALS= shutdown.8 halt.8 reboot.2 reboot.8
9
10all: $(PROGRAMS)
11
12shutdown: shutdown.o sh_wall.o log.o
13 $(CC) $(LDFLAGS) -o shutdown shutdown.o sh_wall.o log.o
14 install -S 4kw $@
15
16halt: halt.o log.o
17 $(CC) $(LDFLAGS) -o halt halt.o log.o
18 install -S 4kw $@
19
20tinyhalt: tinyhalt.c
21 $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $?
22 install -S 4kw $@
23
24install: /usr/bin/halt /usr/bin/reboot /usr/bin/shutdown \
25 /bin/halt /bin/reboot
26
27/usr/bin/halt: halt
28 install -cs -o root -g operator -m 744 $? $@
29
30/usr/bin/reboot: /usr/bin/halt
31 install -l $? $@
32
33/usr/bin/shutdown: shutdown
34 install -cs -o root -g operator -m 4754 $? $@
35
36/bin/halt: tinyhalt
37 install -cs -o root -g operator -m 744 $? $@
38
39/bin/reboot: /bin/halt
40 install -l $? $@
41
42clean:
43 rm -f *.o a.out core $(PROGRAMS)
Note: See TracBrowser for help on using the repository browser.