blob: 0b1d986be7b3ac19c54b005b7656caf8b89d1f94 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
VERSION=0.540-1
all:
clean:
rm -rf tmp network_boot_floppy+cd+hd_$(VERSION)
targz: clean
rm -rf ../tmp 2> /dev/null
mkdir ../tmp
cp -ra * ../tmp
rm -rf `find ../tmp/* -type d -name .svn`
mv ../tmp ../etherboot-tcos-$(VERSION)
tar -czf ../etherboot-tcos-$(VERSION).tar.gz ../etherboot-tcos-$(VERSION)
rm -rf ../etherboot-tcos-$(VERSION)
patch_version:
# PATCHING VERSION
patch_dapper: patch_version
# nothing to patch
patch_edgy: patch_version
# nothing to patch
patch_feisty: patch_version
# nothing to patch
patch_gutsy: patch_version
# nothing to patch
patch_hardy: patch_version
# nothing to patch
patch_max: patch_version
# nothing to patch
patch_intrepid: patch_version
# nothing to patch
patch_etch: patch_version
# nothing to patch
patch_lenny: patch_version
# nothing to patch
patch_unstable: patch_version
# nothing to patch
|