Magellan Linux

Annotation of /tags/installer-simple-0_4_90_20140108_4/Makefile

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2335 - (hide annotations) (download)
Fri Jan 3 14:07:34 2014 UTC (10 years, 3 months ago) by niro
Original Path: trunk/installer-simple/Makefile
File size: 1371 byte(s)
-use hwdetection and drop findhdd
1 niro 2322 # $Id$
2 niro 2320
3 niro 2330 VERSION = $(shell cat VERSION)
4 niro 2331 SYSTEMDUNITDIR = $(shell pkg-config --variable=systemdsystemunitdir systemd)
5     INSTALLER_TTY = tty1
6 niro 2320
7 niro 2332 SYSCONFDIR = etc
8 niro 2325 PREFIX = /usr
9     LIBDIR = $(PREFIX)/lib/installer
10     BINDIR = $(PREFIX)/bin
11 niro 2320
12 niro 2329 SED = sed
13     INSTALL = install
14     LN_S = ln -snf
15     RM = rm
16    
17 niro 2327 all:
18 niro 2333 $(SED) -e 's:%VERSIONTAG%:$(VERSION):' \
19     -e 'S:%LIBDIR%:$(LIBDIR):g'
20 niro 2328 bin/installer.sh.in \
21     > bin/installer.sh
22 niro 2331 $(SED) -e 's:%INSTALLER_TTY%:$(INSTALLER_TTY):g' \
23     -e 's:%BINDIR%:$(BINDIR):g' \
24     systemd/installer.service.in \
25     > systemd/installer.service
26 niro 2320
27     create-dirs:
28 niro 2332 $(INSTALL) -d -m 0755 $(DESTDIR)/$(SYSCONFDIR)
29 niro 2329 $(INSTALL) -d -m 0755 $(DESTDIR)/$(LIBDIR)/functions
30     $(INSTALL) -d -m 0755 $(DESTDIR)/$(BINDIR)
31 niro 2320
32     install-files:
33 niro 2332 $(INSTALL) -m 0644 conf/installer.conf $(DESTDIR)$(SYSCONFDIR)
34 niro 2329 $(INSTALL) -m 0755 bin/installer.sh $(DESTDIR)$(BINDIR)/installer
35 niro 2335 $(INSTALL) -m 0644 functions/hwdetection.sh $(DESTDIR)$(LIBDIR)/functions/
36 niro 2320
37 niro 2331 install-systemd
38     $(INSTALL) -d $(DESTDIR)/$(SYSTEMDUNITDIR)
39     $(INSTALL) -d $(DESTDIR)/$(SYSTEMDUNITDIR)/local-fs.target.wants
40     $(INSTALL) -m 0644 systemd/mnt-cdrom.mount $(DESTDIR)/$(SYSTEMDUNITDIR)
41     $(LN_S) ../mnt-cdrom.mount $(DESTDIR)/$(SYSTEMDUNITDIR)/local-fs.target.wants/mnt-cdrom.mount
42 niro 2320
43 niro 2331 install: create-dirs install-files install-systemd
44    
45 niro 2320 clean:
46 niro 2329 $(RM) -f bin/installer.sh
47 niro 2331 $(RM) -f systemd/installer.service
48 niro 2320
49     .PHONY: all install