summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorOliver Tappe2007-07-03 01:27:51 +0200
committerOliver Tappe2007-07-03 01:27:51 +0200
commitec1dde68f32d6f304217b777a54aea698f119c13 (patch)
treeb1ff59249b7bd7c8a984315dbf4960c531716420 /Makefile
parent* moved checkFlags() from Utils to Basics and used it there (in (diff)
downloadcore-ec1dde68f32d6f304217b777a54aea698f119c13.tar.gz
core-ec1dde68f32d6f304217b777a54aea698f119c13.tar.xz
core-ec1dde68f32d6f304217b777a54aea698f119c13.zip
* added support for os-plugins:
+ added script slxos-plugin, which must be invoked to install a plugin into a vendor-OS + added handling of plugins to slxconfig-demuxer + added folder structure for plugins (below 'os-plugins') + implemented one simple plugin, called 'Example' which contains a couple of hints how to write own plugins git-svn-id: http://svn.openslx.org/svn/openslx/trunk@1220 95ad53e4-c205-0410-b2fa-d234c58c8868
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 5 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index f322ca29..3d18d882 100644
--- a/Makefile
+++ b/Makefile
@@ -153,6 +153,7 @@ supported."; \
@cp bin/slx* $(SLX_BUILD_PATH)$(SLX_BASE_PATH)/bin/; \
cp config-db/slx* $(SLX_BUILD_PATH)$(SLX_BASE_PATH)/bin/; \
cp installer/slx* $(SLX_BUILD_PATH)$(SLX_BASE_PATH)/bin/; \
+ cp os-plugins/slx* $(SLX_BUILD_PATH)$(SLX_BASE_PATH)/bin/; \
tar --exclude=.svn -cp -C lib OpenSLX \
| tar -xp -C $(SLX_BUILD_PATH)$(SLX_BASE_PATH)/lib; \
tar --exclude=.svn --exclude *.example \
@@ -165,6 +166,10 @@ supported."; \
| tar -xp -C $(SLX_BUILD_PATH)$(SLX_BASE_PATH)/lib; \
tar --exclude=.svn -cp -C installer OpenSLX \
| tar -xp -C $(SLX_BUILD_PATH)$(SLX_BASE_PATH)/lib; \
+ tar --exclude=.svn -cp -C os-plugins OpenSLX \
+ | tar -xp -C $(SLX_BUILD_PATH)$(SLX_BASE_PATH)/lib; \
+ tar --exclude=.svn -cp -C os-plugins plugins \
+ | tar -xp -C $(SLX_BUILD_PATH)$(SLX_BASE_PATH)/lib; \
@ # link all binaries & scripts into user-path:
@ln -sf $(SLX_BASE_PATH)/bin/slx* $(SLX_BUILD_PATH)$(USR_BIN_PATH)/; \