Index: /bundle_creation/makefile
===================================================================
--- /bundle_creation/makefile	(revision 4)
+++ /bundle_creation/makefile	(revision 4)
@@ -0,0 +1,25 @@
+ALL: CONTENTS ARCHIVE
+	@echo ALL DONE
+
+ARCHIVE:
+	@echo Creating archive...
+	@tar -czf management_scripts.tar.gz etc home usr
+
+CONTENTS: SCRIPTS SSD
+
+SCRIPTS:
+	@echo Copying management scripts...
+	@find ../scripts -name "*~" -exec rm {} \;
+	@cp -r ../scripts/* .
+
+SSD: usr/local/bin/start-stop-daemon_nondeb
+
+# start-stop-daemon:
+usr/local/bin/start-stop-daemon_nondeb: ../tools/start-stop-daemon_nondeb/start-stop-daemon_nondeb.c
+	@echo Compiling start-stop-daemon...
+	@gcc -Wall -Wextra -Wno-return-type -Os -o $@ $<
+
+clean:
+	@echo Cleaning intermediate stuff...
+	@find * -type d -exec rm -R {} \; 2>/dev/null
+	@echo Ignore that error ;)
