2000-06-19 14:51:34 +05:30
|
|
|
#!/usr/bin/make -f
|
|
|
|
|
2002-11-23 12:44:55 +05:30
|
|
|
export DH_VERBOSE=1
|
|
|
|
export DH_COMPAT=3
|
2000-06-19 14:51:34 +05:30
|
|
|
|
2002-11-23 12:44:55 +05:30
|
|
|
ifneq (,$(findstring debug,$(DEB_BUILD_OPTIONS)))
|
|
|
|
CFLAGS += -g
|
|
|
|
endif
|
|
|
|
ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS)))
|
|
|
|
INSTALL_PROGRAM += -s
|
|
|
|
endif
|
2000-06-19 14:51:34 +05:30
|
|
|
|
|
|
|
binary-indep:
|
|
|
|
|
2002-11-23 12:44:55 +05:30
|
|
|
busybox-deb:
|
2000-06-19 14:51:34 +05:30
|
|
|
dh_testdir
|
|
|
|
dh_testroot
|
2002-11-23 12:44:55 +05:30
|
|
|
$(MAKE) clean
|
|
|
|
cp ./debian/config-deb .config
|
|
|
|
$(MAKE) dep
|
|
|
|
$(MAKE)
|
|
|
|
install -D busybox ./debian/busybox/bin/busybox
|
|
|
|
dh_installchangelogs Changelog -pbusybox
|
|
|
|
dh_strip -pbusybox
|
|
|
|
dh_compress -pbusybox
|
|
|
|
dh_fixperms -pbusybox
|
|
|
|
dh_installdeb -pbusybox
|
|
|
|
dh_shlibdeps -pbusybox
|
|
|
|
dh_gencontrol -pbusybox
|
|
|
|
dh_md5sums -pbusybox
|
|
|
|
dh_builddeb -pbusybox
|
|
|
|
|
|
|
|
busybox-udeb:
|
2000-06-19 14:51:34 +05:30
|
|
|
dh_testdir
|
|
|
|
dh_testroot
|
2002-11-23 12:44:55 +05:30
|
|
|
$(MAKE) clean
|
|
|
|
cp ./debian/config-udeb .config
|
|
|
|
$(MAKE) dep
|
|
|
|
$(MAKE)
|
|
|
|
install -D busybox ./debian/busybox-udeb/bin/busybox
|
|
|
|
dh_installchangelogs Changelog -pbusybox-udeb
|
|
|
|
dh_strip -pbusybox-udeb
|
|
|
|
dh_compress -pbusybox-udeb
|
|
|
|
dh_fixperms -pbusybox-udeb
|
|
|
|
dh_installdeb -pbusybox-udeb
|
|
|
|
dh_shlibdeps -pbusybox-udeb
|
|
|
|
dh_gencontrol -pbusybox-udeb
|
|
|
|
dh_md5sums -pbusybox-udeb
|
|
|
|
dh_builddeb -pbusybox-udeb
|
|
|
|
|
|
|
|
|
|
|
|
busybox-static:
|
2000-12-02 01:25:04 +05:30
|
|
|
dh_testdir
|
|
|
|
dh_testroot
|
2002-11-23 12:44:55 +05:30
|
|
|
$(MAKE) clean
|
|
|
|
cp ./debian/config-static .config
|
|
|
|
$(MAKE) dep
|
|
|
|
$(MAKE)
|
|
|
|
install -D busybox ./debian/busybox-static/bin/busybox
|
|
|
|
dh_installchangelogs Changelog -pbusybox-static
|
|
|
|
dh_strip -pbusybox-static
|
|
|
|
dh_compress -pbusybox-static
|
|
|
|
dh_fixperms -pbusybox-static
|
|
|
|
dh_installdeb -pbusybox-static
|
|
|
|
dh_shlibdeps -pbusybox-static
|
|
|
|
dh_gencontrol -pbusybox-static
|
|
|
|
dh_md5sums -pbusybox-static
|
|
|
|
dh_builddeb -pbusybox-static
|
|
|
|
|
|
|
|
binary-arch: busybox-deb busybox-udeb busybox-static
|
2000-12-02 01:25:04 +05:30
|
|
|
|
2000-06-19 14:51:34 +05:30
|
|
|
binary: binary-indep binary-arch
|
2002-11-23 12:44:55 +05:30
|
|
|
.PHONY: build clean binary-indep binary-arch binary install configure
|