Magellan Linux

Diff of /alx-src/branches/alxconf-060/Makefile

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

revision 2005 by niro, Mon May 9 15:08:53 2011 UTC revision 5013 by niro, Wed Aug 7 12:29:09 2013 UTC
# Line 17  create-dirs: Line 17  create-dirs:
17   install -d -m 0755 $(DESTDIR)/$(alxconfdir)/skel/fluxbox   install -d -m 0755 $(DESTDIR)/$(alxconfdir)/skel/fluxbox
18   install -d -m 0755 $(DESTDIR)/$(alxconfdir)/skel/net   install -d -m 0755 $(DESTDIR)/$(alxconfdir)/skel/net
19   install -d -m 0755 $(DESTDIR)/$(alxconfdir)/skel/slim   install -d -m 0755 $(DESTDIR)/$(alxconfdir)/skel/slim
  install -d -m 0755 $(DESTDIR)/$(alxconfdir)/skel/xtdesktop  
20   install -d -m 0755 $(DESTDIR)/$(alxconfdir)/ica-sessions/icons   install -d -m 0755 $(DESTDIR)/$(alxconfdir)/ica-sessions/icons
21   install -d -m 0755 $(DESTDIR)/$(sysconfdir)/rc.d/init.d   install -d -m 0755 $(DESTDIR)/$(sysconfdir)/rc.d/init.d
22   install -d -m 0755 $(DESTDIR)/$(sysconfdir)/conf.d/hwsetup   install -d -m 0755 $(DESTDIR)/$(sysconfdir)/conf.d/hwsetup
23   install -d -m 0755 $(DESTDIR)/$(libdir)/functions   install -d -m 0755 $(DESTDIR)/$(libdir)/functions
24   install -d -m 0755 $(DESTDIR)/$(libdir)/bin   install -d -m 0755 $(DESTDIR)/$(libdir)/bin
25     install -d -m 0755 $(DESTDIR)/$(libdir)/plugins/terminal
26     install -d -m 0755 $(DESTDIR)/$(libdir)/plugins/firefox
27     install -d -m 0755 $(DESTDIR)/$(libdir)/plugins/flashplayer
28     install -d -m 0755 $(DESTDIR)/$(libdir)/plugins/remserial
29     install -d -m 0755 $(DESTDIR)/$(libdir)/plugins/rdesktop
30     install -d -m 0755 $(DESTDIR)/$(libdir)/plugins/usbip
31     install -d -m 0755 $(DESTDIR)/$(libdir)/plugins/egk_scm
32     install -d -m 0755 $(DESTDIR)/$(libdir)/plugins/citrix_spe
33   install -d -m 0755 $(DESTDIR)/$(sbindir)   install -d -m 0755 $(DESTDIR)/$(sbindir)
34   install -d -m 0755 $(DESTDIR)/$(bindir)   install -d -m 0755 $(DESTDIR)/$(bindir)
35    
36  install-files:  install-files:
37   install -m 0755 bin/update-alx.sh $(DESTDIR)$(sbindir)/update-alx   install -m 0755 bin/update-alx.sh $(DESTDIR)$(sbindir)/update-alx
38     install -m 0755 bin/alx-hwdetection.sh $(DESTDIR)$(sbindir)/alx-hwdetection
39   install -m 0755 bin/txt2html.sh $(DESTDIR)$(bindir)/txt2html   install -m 0755 bin/txt2html.sh $(DESTDIR)$(bindir)/txt2html
40     install -m 0755 bin/wfica-launcher.sh $(DESTDIR)$(bindir)/wfica-launcher
41    
42   # inits   # inits
43   install -m 0755 init.d/alxsetstate $(DESTDIR)$(sysconfdir)/rc.d/init.d/   install -m 0755 init.d/alxsetstate $(DESTDIR)$(sysconfdir)/rc.d/init.d/
# Line 49  install-files: Line 58  install-files:
58   install -m 0644 functions/config_versions.sh $(DESTDIR)$(libdir)/functions/config_versions   install -m 0644 functions/config_versions.sh $(DESTDIR)$(libdir)/functions/config_versions
59   install -m 0644 functions/mysqlfunctions $(DESTDIR)$(libdir)/functions/mysqlfunctions   install -m 0644 functions/mysqlfunctions $(DESTDIR)$(libdir)/functions/mysqlfunctions
60   install -m 0644 functions/serial_functions.sh $(DESTDIR)$(libdir)/functions/serial_functions   install -m 0644 functions/serial_functions.sh $(DESTDIR)$(libdir)/functions/serial_functions
61     install -m 0644 functions/common.sh $(DESTDIR)$(libdir)/functions/common
62     install -m 0644 functions/config_plugins.sh $(DESTDIR)$(libdir)/functions/config_plugins
63    
64   # configs   # configs
65   install -m 0644 conf/config.rc $(DESTDIR)$(alxconfdir)   install -m 0644 conf/config.rc $(DESTDIR)$(alxconfdir)
66   install -m 0644 conf/unsupported-netcard-drivers $(DESTDIR)$(sysconfdir)/conf.d/hwsetup || die   install -m 0644 conf/unsupported-netcard-drivers $(DESTDIR)$(sysconfdir)/conf.d/hwsetup || die
67    
68   # icons   # icons
69   install -m 0644 icons/default.png $(DESTDIR)$(alxconfdir)/ica-sessions/icons/   install -m 0644 icons/* $(DESTDIR)$(alxconfdir)/ica-sessions/icons/
  install -m 0644 icons/default_item.png $(DESTDIR)$(alxconfdir)/ica-sessions/icons/  
  install -m 0644 icons/sysinfo.png $(DESTDIR)$(alxconfdir)/ica-sessions/icons/  
70    
71   # skeletons   # skeletons
72   install -m 0644 skel/fluxbox/* $(DESTDIR)$(alxconfdir)/skel/fluxbox/   install -m 0644 skel/fluxbox/* $(DESTDIR)$(alxconfdir)/skel/fluxbox/
73   install -m 0644 skel/net/* $(DESTDIR)$(alxconfdir)/skel/net/   install -m 0644 skel/net/* $(DESTDIR)$(alxconfdir)/skel/net/
  install -m 0644 skel/xtdesktop/* $(DESTDIR)$(alxconfdir)/skel/xtdesktop/  
74   install -m 0644 skel/slim/* $(DESTDIR)$(alxconfdir)/skel/slim/   install -m 0644 skel/slim/* $(DESTDIR)$(alxconfdir)/skel/slim/
75    
76  install: create-dirs \   # plugins
77   install-files \   install -m 0755 plugins/terminal/plugin.sh $(DESTDIR)/$(libdir)/plugins/terminal/
78     install -m 0755 plugins/firefox/plugin.sh $(DESTDIR)/$(libdir)/plugins/firefox/
79     install -m 0755 plugins/flashplayer/plugin.sh $(DESTDIR)/$(libdir)/plugins/flashplayer/
80     install -m 0755 plugins/remserial/plugin.sh $(DESTDIR)/$(libdir)/plugins/remserial/
81     install -m 0755 plugins/rdesktop/plugin.sh $(DESTDIR)/$(libdir)/plugins/rdesktop/
82     install -m 0755 plugins/usbip/plugin.sh $(DESTDIR)/$(libdir)/plugins/usbip/
83     install -m 0755 plugins/egk_scm/plugin.sh $(DESTDIR)/$(libdir)/plugins/egk_scm/
84     install -m 0755 plugins/citrix_spe/plugin.sh $(DESTDIR)/$(libdir)/plugins/citrix_spe/
85    
86    install: create-dirs install-files
87    
88  .PHONY: all install  .PHONY: all install

Legend:
Removed from v.2005  
changed lines
  Added in v.5013