# Makefile for creating project tarball and installing the project # to the various destination directories # # Lars Mueller , 2006 # Dirk von Suchodoletz , 2006 # # (c) 2006 - OpenSLX.com # the following should be filled via 'configure': USR_BIN_PATH=/usr/bin SLX_BIN_PATH=/opt/openslx/bin SLX_CONFIG_PATH=/etc/opt/openslx SLX_PRIVATE_PATH=/var/opt/openslx SLX_PUBLIC_PATH=/srv/openslx SLX_SHARE_PATH=/opt/openslx/share tarball: @OPENSLX_SVN_SNAPSHOT=$$( echo $${OPENSLX_SVN_SNAPSHOT} | \ tr [:upper:] [:lower:]); \ case "$${OPENSLX_SVN_SNAPSHOT}" in \ yes|y|1) OPENSLX_VERSION_SVNREV=$$( svnversion) ;; \ esac; \ . VERSIONS; \ echo "Creating OpenSLX $${OPENSLX_VERSION_STRING} tar ball "; \ if test -e "../openslx-$${OPENSLX_VERSION_STRING}" -a \ ! -L "../openslx-$${OPENSLX_VERSION_STRING}"; then \ echo "Error: ../openslx-$${OPENSLX_VERSION_STRING} exists and is not a sym link! "; \ exit 1; \ fi; \ svn_repo_name=$$( pwd); \ svn_repo_name="$${svn_repo_name##*/}"; \ if ! test -L "../openslx-$${OPENSLX_VERSION_STRING}"; then \ pushd .. >/dev/null; \ ln -s "$${svn_repo_name}" "openslx-$${OPENSLX_VERSION_STRING}"; \ popd >/dev/null; \ OPENSLX_SOURCEDIR_SYMLINK_CREATED="yes"; \ fi; \ pushd .. >/dev/null; \ tar cfhj \ "$${svn_repo_name}/openslx-$${OPENSLX_VERSION_STRING}.tar.bz2" \ --exclude-from="$${svn_repo_name}/tools/tar_exclude_from" \ "openslx-$${OPENSLX_VERSION_STRING}/"; \ test "$${OPENSLX_SOURCEDIR_SYMLINK_CREATED}" = "yes" && \ rm -f "openslx-$${OPENSLX_VERSION_STRING}"; \ popd >/dev/null install: @echo "Installing OpenSLX project files" @mkdir -p $(SLX_CONFIG_PATH) \ -p $(SLX_BIN_PATH) \ -p $(SLX_SHARE_PATH)/distro-specs \ -p $(SLX_SHARE_PATH)/templates \ -p $(SLX_SHARE_PATH)/initramfs \ -p $(SLX_PRIVATE_PATH)/config/default/initramfs \ -p $(SLX_PRIVATE_PATH)/config/default/rootfs \ -p $(SLX_PRIVATE_PATH)/db \ -p $(SLX_PRIVATE_PATH)/stage1 \ -p $(SLX_PUBLIC_PATH)/tftpboot @cp initrd/{mkdxsinitrd,slxmkramfs} $(SLX_BIN_PATH) @chmod u+x $(SLX_BIN_PATH)/{mkdxsinitrd,slxmkramfs} @ln -sf $(SLX_BIN_PATH)/mkdxsinitrd $(USR_BIN)/ @ln -sf $(SLX_BIN_PATH)/slxmkramfs $(USR_BIN)/ @cp -a initrd/initrd-stuff/* $(SLX_SHARE_PATH)/initramfs @cp -a initrd/distro-specs/* $(SLX_SHARE_PATH)/distro-specs @cp -a installer/default_files/machine-setup.default \ $(SLX_SHARE_PATH)/templates @cp -a installer/default_files/tftpboot $(SLX_SHARE_PATH) @echo -e "#!/bin/sh\n#\n# This script allows the local admin to \ extend the\n# capabilities at the beginning of the initramfs (stage3). \ The toolset is rather\n# restricted and you have to keep in mind that \ stage4 rootfs has the\n# prefix '/mnt'." \ > $(SLX_PRIVATE_PATH)/config/default/initramfs/preinit.local @echo -e "#!/bin/sh\n#\n# This script allows the local admin to \ extend the\n# capabilities at the end of the initramfs (stage3). The \ toolset is rather\n# restricted and you have to keep in mind that stage4 \ rootfs has the\n# prefix '/mnt'. But you might use some special slx \ functions via\# inclusion: '. /etc/functions' ..." \ > $(SLX_PRIVATE_PATH)/config/default/initramfs/postinit.local @chmod u+x $(SLX_PRIVATE_PATH)/config/default/initramfs/*init.local @echo -e "# default setup for openslx on this specific system\n" \ > $(SLX_CONFIG_PATH)/settings.default @echo -e "# local setup for openslx (overrides settings.default)\n" \ > $(SLX_CONFIG_PATH)/settings.local @find $(SLX_SHARE_PATH) -depth -regex ".*/\..*" -print0 | xargs -0 rm -rf {} @chmod a+w $(SLX_PUBLIC_PATH)/tftpboot @chmod a+w $(SLX_PRIVATE_PATH)/db #uninstall: # @echo -e "Uninstalling openslx.org project files but keeping configs \ #and stage1\nfiles (please remove manually)" # @rm -rf $(SLX_SHARE_PATH) # @rm $(USE_BIN_PATH)/{mkdxsinitrd,slxmkramfs} clean: @echo "Cleanup OpenSLX source directory " @for file in openslx-*.tar.bz2; do \ rm -f $${file}; \ done