--- alx-src/branches/alxconf-060/Makefile 2011/06/27 15:05:20 2468 +++ alx-src/branches/alxconf-060/Makefile 2012/04/13 18:05:50 3471 @@ -22,11 +22,19 @@ install -d -m 0755 $(DESTDIR)/$(sysconfdir)/conf.d/hwsetup install -d -m 0755 $(DESTDIR)/$(libdir)/functions install -d -m 0755 $(DESTDIR)/$(libdir)/bin + install -d -m 0755 $(DESTDIR)/$(libdir)/plugins/terminal + install -d -m 0755 $(DESTDIR)/$(libdir)/plugins/firefox + install -d -m 0755 $(DESTDIR)/$(libdir)/plugins/flashplayer + install -d -m 0755 $(DESTDIR)/$(libdir)/plugins/remserial + install -d -m 0755 $(DESTDIR)/$(libdir)/plugins/rdesktop + install -d -m 0755 $(DESTDIR)/$(libdir)/plugins/usbip + install -d -m 0755 $(DESTDIR)/$(libdir)/plugins/egk-scm install -d -m 0755 $(DESTDIR)/$(sbindir) install -d -m 0755 $(DESTDIR)/$(bindir) install-files: install -m 0755 bin/update-alx.sh $(DESTDIR)$(sbindir)/update-alx + install -m 0755 bin/alx-hwdetection.sh $(DESTDIR)$(sbindir)/alx-hwdetection install -m 0755 bin/txt2html.sh $(DESTDIR)$(bindir)/txt2html # inits @@ -49,21 +57,29 @@ install -m 0644 functions/mysqlfunctions $(DESTDIR)$(libdir)/functions/mysqlfunctions install -m 0644 functions/serial_functions.sh $(DESTDIR)$(libdir)/functions/serial_functions install -m 0644 functions/common.sh $(DESTDIR)$(libdir)/functions/common + install -m 0644 functions/config_plugins.sh $(DESTDIR)$(libdir)/functions/config_plugins # configs install -m 0644 conf/config.rc $(DESTDIR)$(alxconfdir) install -m 0644 conf/unsupported-netcard-drivers $(DESTDIR)$(sysconfdir)/conf.d/hwsetup || die # icons - install -m 0644 icons/default.png $(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/ + install -m 0644 icons/* $(DESTDIR)$(alxconfdir)/ica-sessions/icons/ # skeletons install -m 0644 skel/fluxbox/* $(DESTDIR)$(alxconfdir)/skel/fluxbox/ install -m 0644 skel/net/* $(DESTDIR)$(alxconfdir)/skel/net/ install -m 0644 skel/slim/* $(DESTDIR)$(alxconfdir)/skel/slim/ + # plugins + install -m 0755 plugins/terminal/plugin.sh $(DESTDIR)/$(libdir)/plugins/terminal/ + install -m 0755 plugins/firefox/plugin.sh $(DESTDIR)/$(libdir)/plugins/firefox/ + install -m 0755 plugins/flashplayer/plugin.sh $(DESTDIR)/$(libdir)/plugins/flashplayer/ + install -m 0755 plugins/remserial/plugin.sh $(DESTDIR)/$(libdir)/plugins/remserial/ + install -m 0755 plugins/rdesktop/plugin.sh $(DESTDIR)/$(libdir)/plugins/rdesktop/ + install -m 0755 plugins/usbip/plugin.sh $(DESTDIR)/$(libdir)/plugins/usbip/ + install -m 0755 plugins/egk-scm/plugin.sh $(DESTDIR)/$(libdir)/plugins/egk-scm/ + install: create-dirs install-files .PHONY: all install