Magellan Linux

Annotation of /tags/init-0_5_5/Makefile

Parent Directory Parent Directory | Revision Log Revision Log


Revision 849 - (hide annotations) (download)
Mon May 4 19:55:40 2009 UTC (15 years ago) by niro
Original Path: trunk/magellan-initscripts/Makefile
File size: 2944 byte(s)
added missing udev initscript

1 niro 362 # Magellan Initscripts
2 niro 786 # $Header: /home/cvsd/magellan-cvs/magellan-src/magellan-initscripts/Makefile,v 1.10 2008-12-22 22:31:21 niro Exp $
3 niro 362
4     CC=gcc
5     CFLAGS=-Os -Wall
6     LDFLAGS=-s
7    
8     DESTDIR=
9    
10     sysconfdir=/etc
11     libdir=/lib
12     sbindir=/sbin
13     rcdir=$(sysconfdir)/rc.d
14     initdir=$(rcdir)/init.d
15    
16     all: start-stop-daemon
17    
18     start-stop-daemon: src/start-stop-daemon.o
19     $(CC) $(CFLAGS) -o start-stop-daemon src/start-stop-daemon.o $(LDFLAGS)
20    
21     src/start-stop-daemon.o: src/start-stop-daemon.c src/headers.h
22    
23     clean:
24     rm -f src/*.o
25     if [ -f start-stop-daemon ]; then rm start-stop-daemon; fi
26    
27     create-dirs:
28     install -d -m 0755 $(DESTDIR)$(sysconfdir)
29     install -d -m 0755 $(DESTDIR)$(sysconfdir)/conf.d
30     install -d -m 0755 $(DESTDIR)$(sysconfdir)/modules.d
31     install -d -m 0755 $(DESTDIR)$(rcdir)/rc0.d
32     install -d -m 0755 $(DESTDIR)$(rcdir)/rc1.d
33     install -d -m 0755 $(DESTDIR)$(rcdir)/rc2.d
34     install -d -m 0755 $(DESTDIR)$(rcdir)/rc3.d
35     install -d -m 0755 $(DESTDIR)$(rcdir)/rc4.d
36     install -d -m 0755 $(DESTDIR)$(rcdir)/rc5.d
37     install -d -m 0755 $(DESTDIR)$(rcdir)/rc6.d
38     install -d -m 0755 $(DESTDIR)$(rcdir)/rcsysinit.d
39     install -d -m 0755 $(DESTDIR)$(initdir)
40 niro 694 install -d -m 0755 $(DESTDIR)$(libdir)/udev/state
41 niro 362 install -d -m 0755 $(DESTDIR)$(sbindir)
42    
43     install-etc:
44     for file in DIR_COLORS \
45     fstab \
46     group \
47     hostname \
48     hosts \
49     inittab \
50     inputrc \
51     issue \
52     passwd \
53     profile \
54     protocols \
55     rc.config \
56     services \
57 niro 454 shells \
58     sysctl.conf; \
59 niro 362 do \
60     install -m 0644 etc/$${file} $(DESTDIR)$(sysconfdir); \
61     done
62     echo "$$(date +%Y%m%d)-cvs" > $(DESTDIR)$(sysconfdir)/mageversion
63    
64    
65     install-confd:
66     install -m 0644 etc/conf.d/kernel $(DESTDIR)$(sysconfdir)/conf.d
67 niro 509 install -m 0644 etc/conf.d/net.routes $(DESTDIR)$(sysconfdir)/conf.d
68 niro 579 install -m 0644 etc/conf.d/net.sample $(DESTDIR)$(sysconfdir)/conf.d
69 niro 786 install -m 0644 etc/conf.d/rc $(DESTDIR)$(sysconfdir)/conf.d
70 niro 362
71     install-modulesd:
72 niro 693 install -m 0644 etc/modules.autoload $(DESTDIR)$(sysconfdir)
73 niro 362 install -m 0644 etc/modules.d/aliases $(DESTDIR)$(sysconfdir)/modules.d
74     install -m 0644 etc/modules.d/i386 $(DESTDIR)$(sysconfdir)/modules.d
75    
76     install-initd:
77     for script in checkfs \
78     cleanfs \
79     consolefont \
80     functions \
81     halt \
82     hwdetect \
83     loadkeys \
84     localnet \
85     modules \
86     mountfs \
87     network \
88     rc \
89     reboot \
90     sendsignals \
91     setclock \
92     swap \
93 niro 367 sysctl \
94 niro 849 template \
95     udev; \
96 niro 362 do \
97     install -m 0755 etc/rc.d/init.d/$${script} $(DESTDIR)$(initdir)/${script}; \
98     done
99    
100    
101     install-udevd:
102 niro 694 install -m 0644 lib/udev-state/devices.tar.bz2 $(DESTDIR)$(libdir)/udev/state
103 niro 362
104     install-bins:
105     install -m 0755 start-stop-daemon $(DESTDIR)$(sbindir)
106     install -m 0755 sbin/modules-update $(DESTDIR)$(sbindir)
107     install -m 0755 sbin/rc-config $(DESTDIR)$(sbindir)
108    
109 niro 365 install-symlinks:
110     ln -snf rc.d/init.d $(DESTDIR)$(sysconfdir)/init.d
111    
112 niro 362 install: create-dirs \
113     install-etc \
114     install-confd \
115     install-modulesd \
116     install-initd \
117     install-udevd \
118 niro 365 install-bins \
119     install-symlinks
120 niro 362
121     .PHONY: all install