source: bundle_creation/makefile@ 23

Last change on this file since 23 was 8, checked in by alloc, 11 years ago

Renamed ssd

File size: 611 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: usr/local/bin/start-stop-daemon
16
17# start-stop-daemon:
18usr/local/bin/start-stop-daemon: ../tools/start-stop-daemon/start-stop-daemon.c
19 @echo Compiling start-stop-daemon...
20 @gcc -Wall -Wextra -Wno-return-type -Os -o $@ $<
21
22clean:
23 @echo Cleaning intermediate stuff...
24 @find * -type d -exec rm -R {} \; 2>/dev/null
25 @echo Ignore that error ;)
Note: See TracBrowser for help on using the repository browser.