Magellan Linux

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

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 2322 by niro, Fri Jan 3 13:18:57 2014 UTC revision 2454 by niro, Tue Jan 7 15:07:11 2014 UTC
# Line 1  Line 1 
1  # $Id$  # $Id$
2    
3  VERSION=$(shell cat VERSION)  SYSCONFDIR = /etc
4    PREFIX = /usr
5  DESTDIR=  LIBDIR = $(PREFIX)/lib/installer
6    BINDIR = $(PREFIX)/bin
7  prefix=/usr  
8  libdir=$(prefix)/lib/installer  SED = sed
9  bindir=$(prefix)/bin  INSTALL = install
10    LN_S = ln -snf
11  all: install  RM = rm
12    CAT = cat
13    PKGCONFIG = pkg-config
14    
15    VERSION = $(shell $(CAT) VERSION)
16    SYSTEMDUNITDIR = $(shell $(PKGCONFIG) --variable=systemdsystemunitdir systemd)
17    INSTALLER_TTY = tty1
18    
19    all:
20     $(SED) -e 's:%VERSIONTAG%:$(VERSION):' \
21     -e 's:%LIBDIR%:$(LIBDIR):g' \
22     -e 's:%SYSCONFDIR%:$(SYSCONFDIR):g' \
23     bin/installer.sh.in \
24     > bin/installer.sh
25     $(SED) -e 's:%INSTALLER_TTY%:$(INSTALLER_TTY):g'  \
26     -e 's:%BINDIR%:$(BINDIR):g'  \
27     systemd/installer.service.in \
28     > systemd/installer.service
29    
30  create-dirs:  create-dirs:
31   install -d -m 0755 $(DESTDIR)/$(libdir)/functions   $(INSTALL) -d -m 0755 $(DESTDIR)/$(SYSCONFDIR)
32   install -d -m 0755 $(DESTDIR)/$(bindir)   $(INSTALL) -d -m 0755 $(DESTDIR)/$(LIBDIR)/functions
33     $(INSTALL) -d -m 0755 $(DESTDIR)/$(BINDIR)
34    
35  install-files:  install-files:
36   sed 's:%VERSIONTAG%:$(VERSION):' < bin/installer.sh.in > bin/installer.sh   $(INSTALL) -m 0644 conf/installer.conf $(DESTDIR)$(SYSCONFDIR)
37   install -m 0755 bin/installer.sh $(DESTDIR)$(bindir)/installer   $(INSTALL) -m 0755 bin/installer.sh $(DESTDIR)$(BINDIR)/installer
38   install -m 0644 functions/findhdd.sh $(DESTDIR)$(libdir)/functions/   $(INSTALL) -m 0644 functions/common.sh $(DESTDIR)$(LIBDIR)/functions/
39     $(INSTALL) -m 0644 functions/common-dialogs.sh $(DESTDIR)$(LIBDIR)/functions/
40     $(INSTALL) -m 0644 functions/installer-dialogs.sh $(DESTDIR)$(LIBDIR)/functions/
41     $(INSTALL) -m 0644 functions/hwdetection.sh $(DESTDIR)$(LIBDIR)/functions/
42     $(INSTALL) -m 0644 functions/bootloader.sh $(DESTDIR)$(LIBDIR)/functions/
43     $(INSTALL) -m 0644 functions/grub.sh $(DESTDIR)$(LIBDIR)/functions/
44     $(INSTALL) -m 0644 functions/grub2.sh $(DESTDIR)$(LIBDIR)/functions/
45     $(INSTALL) -m 0644 functions/initrd-tools.sh $(DESTDIR)$(LIBDIR)/functions/
46     $(INSTALL) -m 0644 functions/dracut.sh $(DESTDIR)$(LIBDIR)/functions/
47     $(INSTALL) -m 0644 functions/mkinitrd.sh $(DESTDIR)$(LIBDIR)/functions/
48    
49    install-systemd:
50     $(INSTALL) -d $(DESTDIR)/$(SYSTEMDUNITDIR)
51     $(INSTALL) -d $(DESTDIR)/$(SYSTEMDUNITDIR)/local-fs.target.wants
52     $(INSTALL) -m 0644 systemd/mnt-cdrom.mount $(DESTDIR)/$(SYSTEMDUNITDIR)
53     $(LN_S) ../mnt-cdrom.mount $(DESTDIR)/$(SYSTEMDUNITDIR)/local-fs.target.wants/mnt-cdrom.mount
54    
55    install: create-dirs install-files install-systemd
56    
57    pot: locale/installer.pot
58     generate-po.sh --create-pot bin/installer.sh.in installer
59     generate-po.sh --append-pot functions/common.sh installer
60     generate-po.sh --append-pot functions/common-dialogs.sh installer
61     generate-po.sh --append-pot functions/installer-dialogs.sh installer
62     generate-po.sh --append-pot functions/hwdetection.sh installer
63     generate-po.sh --append-pot functions/bootloader.sh installer
64     generate-po.sh --append-pot functions/grub.sh installer
65     generate-po.sh --append-pot functions/grub2.sh installer
66     generate-po.sh --append-pot functions/initrd-tools.sh installer
67     generate-po.sh --append-pot functions/dracut.sh installer
68     generate-po.sh --append-pot functions/mkinitrd.sh installer
69     generate-po.sh --unique-pot bin/installer.sh.in installer
70     generate-po.sh --generate bin/installer.sh.in installer
71    
72  install: create-dirs \  install-mo: locale/installer.pot
73   install-files \   DESTDIR=$(DESTDIR) generate-po.sh --compile bin/installer.sh.in installer
74    
75  clean:  clean:
76   rm -f bin/installer.sh   $(RM) -f bin/installer.sh
77     $(RM) -f systemd/installer.service
78    
79  .PHONY: all install  .PHONY: all install

Legend:
Removed from v.2322  
changed lines
  Added in v.2454