phpide-d10
[projects.git] / tools / make / rules
1 #!/usr/bin/make -f
2
3 # Generic rules for mBuild build process
4
5 # defile default operations
6 NOP = @echo "No operation for target $@"
7 DEB = fakeroot dpkg-deb --build $(oldpack) debian/tmp
8 INSERT_BUILD = /usr/share/mbuild/insert_build.sh
9 RSYNC_OPT = -av --exclude="build" --exclude="debian/tmp" --exclude="Packages" --exclude=".*"
10
11 include debian/rules.pre
12
13 default:
14         echo "no default rule available"
15
16 # Löschen aller kompilierten, erzeugten und nicht benötigten Dateien im Bauverzeichnis
17 clean:
18         -rm -rf debian/tmp
19
20 # Bauen der kompilierten Programme und formatierten Dokumente aus den Quellen im Bauverzeichnis
21 build: debian/$(paket).build sync
22         cd ../build ; debian/$(paket).build
23         # Build succeeded
24
25 pack: $(PACK)
26         # packing succeeded
27
28 # Bauen der kompilierten architekturabhängigen Programme aus den Quellen im Bauverzeichnis
29 build-arch:
30
31 # Bauen der architekturunabhängigen formatierten Dokumente aus den Quellen im Bauverzeichnis
32 build-indep:
33
34 # Installieren der Dateien in einen Verzeichnisbaum unterhalb des Verzeichnisses debian für jedes Binärpaket. Falls sie festgelegt wurden, hängen binary*-Ziele effektiv von diesem Ziel ab (optional)
35 install: 
36
37 # Erstellen aller Binärpakete (effektiv ist dies die Kombination der binary-arch- und binary-indep-Ziele)
38 binary: binary-arch binary-indep 
39
40 # Erstellen Architektur-abhängiger (Architecture: any) Binärpakete im übergeordneten Verzeichnis
41 binary-arch: $(BINARY_ARCH)
42
43 # Erstellen Architektur-unabhängiger (Architecture: all) Binärpakete im übergeordneten Verzeichnis
44 binary-indep: $(BINARY_INDEP)
45
46 #copy ../$(paket)_$(version)-$(build)_all.deb
47
48 version: ~/build/$(TARGET)
49         $(INSERT_BUILD) ~/build/$(TARGET) $(build)
50         cp ~/build/*$(build)* ../
51
52 ../build:
53         mkdir ../build
54
55 sync: ../build
56         rsync $(RSYNC_OPT) ./ ../build/
57
58 copy: debian/$(paket).cp
59         debian/$(paket).cp debian/tmp
60
61 ../$(paket)_$(version)-$(build)_$(arch).deb:debian/tmp/DEBIAN/control $(add_inst_tgt)
62         $(DEB)
63         mv debian/tmp.deb ../$(paket)_$(version)-$(build)_$(arch).deb
64
65 debian/tmp/DEBIAN/control: debian/control debian/changelog
66         dpkg-gencontrol
67
68 debian/control: debian/$(paket).control
69         sed "s/_DEB_HOST_ARCH/${DEB_HOST_ARCH}/" debian/$(paket).control >> debian/control
70
71 debian/changelog: debian/$(paket).changelog debian/rules.pre
72         sed "s/%BUILD%/$(build)/" debian/$(paket).changelog > debian/changelog
73 #       echo "${pwd} (${build}) unstable; urgency=medium" > debian/changelog
74 #       echo "  * generated by mbuild" >> debian/changelog
75 #       echo " -- Michael Wagner <info@wagnertech.de>  Sun, 11 Feb 2018 20:03:04 +0100" >> debian/changelog
76 #       mb_create_changelog
77
78 debian/tmp/DEBIAN/preinst: debian/$(paket).preinst
79         cp debian/$(paket).preinst debian/tmp/DEBIAN/preinst
80
81 debian/tmp/DEBIAN/postinst: debian/$(paket).postinst
82         cp debian/$(paket).postinst debian/tmp/DEBIAN/postinst
83
84 debian/tmp/DEBIAN/prerm: debian/$(paket).prerm
85         cp debian/$(paket).prerm debian/tmp/DEBIAN/prerm
86
87 debian/tmp/DEBIAN/postrm: debian/$(paket).postrm
88         cp debian/$(paket).postrm debian/tmp/DEBIAN/postrm
89
90 # Load project specification
91 -include rules.post
92
93 # if debian/control is missing, try old mbuild way
94 #debian/control:
95 #       if [ -e  debian/$(paket).control ]; then echo "trallala"; fi
96