X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/projects.git/blobdiff_plain/6d98500b790e3808cf2fbda4a393717b40b0bbd1..b51de7bb9a8b067840d509bedfdb55174bd4c00e:/tools/make/rules diff --git a/tools/make/rules b/tools/make/rules index 13b9e20..01d2017 100755 --- a/tools/make/rules +++ b/tools/make/rules @@ -5,6 +5,7 @@ # defile default operations NOP = @echo "No operation for target $@" DEB = fakeroot dpkg-deb --build debian/tmp +INSERT_BUILD = /usr/share/mbuild/insert_build.sh include debian/rules.pre @@ -36,13 +37,16 @@ install: binary: binary-arch binary-indep # Erstellen Architektur-abhängiger (Architecture: any) Binärpakete im übergeordneten Verzeichnis -binary-arch: +binary-arch: $(BINARY_ARCH) # Erstellen Architektur-unabhängiger (Architecture: all) Binärpakete im übergeordneten Verzeichnis -binary-indep: copy ../$(paket)_$(version)-$(build)$(_arch).deb +binary-indep: $(BINARY_INDEP) -version: $(TARGET) - $(INSERT_BUILD) $(TARGET) $(build) +#copy ../$(paket)_$(version)-$(build)_all.deb + +version: ~/build/$(TARGET) + $(INSERT_BUILD) ~/build/$(TARGET) $(build) + cp ~/build/*$(build)* ../ ../build: mkdir ../build @@ -53,14 +57,17 @@ sync: copy: debian/$(paket).cp debian/$(paket).cp debian/tmp -../$(paket)_$(version)-$(build)$(_arch).deb:debian/tmp/DEBIAN/control $(add_inst_tgt) +../$(paket)_$(version)-$(build)_$(arch).deb:debian/tmp/DEBIAN/control $(add_inst_tgt) $(DEB) - mv debian/tmp.deb ../$(paket)_$(version)-$(build)$(_arch).deb + mv debian/tmp.deb ../$(paket)_$(version)-$(build)_$(arch).deb debian/tmp/DEBIAN/control: debian/control debian/changelog dpkg-gencontrol -debian/changelog: debian/$(paket).changelog debian/setenv.sh +debian/control: debian/$(paket).control + sed "s/_DEB_HOST_ARCH/${DEB_HOST_ARCH}/" debian/$(paket).control >> debian/control + +debian/changelog: debian/$(paket).changelog debian/rules.pre sed "s/%BUILD%/$(build)/" debian/$(paket).changelog > debian/changelog # echo "${pwd} (${build}) unstable; urgency=medium" > debian/changelog # echo " * generated by mbuild" >> debian/changelog