source: bundle_creation/makefile@ 25

Last change on this file since 25 was 25, checked in by alloc, 10 years ago

Version 8: start-stop-daemon location by variable

File size: 528 bytes
Line 
1ALL: CONTENTS ARCHIVE
2 @echo ALL DONE
3
4ARCHIVE:
5 @echo Creating archive...
6 @tar -czf management_scripts.tar.gz etc home usr
7
8CONTENTS: SCRIPTS SSD
9
10SCRIPTS:
11 @echo Copying management scripts...
12 @find ../scripts -name "*~" -exec rm {} \;
13 @cp -r ../scripts/* .
14
15SSD:
16 @echo Copying start-stop-daemon source...
17 @find ../tools -name "*~" -exec rm {} \;
18 @cp -r ../tools/start-stop-daemon usr/local/lib/7dtd
19
20clean:
21 @echo Cleaning intermediate stuff...
22 @find * -type d -exec rm -R {} \; 2>/dev/null
23 @echo Ignore that error ;)
Note: See TracBrowser for help on using the repository browser.