mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-02-20 13:46:52 +01:00
122 lines
2.8 KiB
Makefile
Executable File
122 lines
2.8 KiB
Makefile
Executable File
#!/usr/bin/make -f
|
|
|
|
# Uncomment this to turn on verbose mode.
|
|
export DH_VERBOSE=1
|
|
export DH_OPTIONS=-v
|
|
|
|
#export DH_COMPAT=7 # This is the debhelper compatability version to use, now defined into compat file
|
|
|
|
|
|
# use dpatch
|
|
include /usr/share/dpatch/dpatch.make
|
|
|
|
|
|
configure:
|
|
dh $@
|
|
|
|
build: patch
|
|
dh $@
|
|
|
|
build-arch: patch
|
|
dh $@
|
|
|
|
build-indep: patch
|
|
dh $@
|
|
|
|
binary:
|
|
dh $@
|
|
|
|
binary-indep:
|
|
dh $@
|
|
|
|
clean:
|
|
# Delete files
|
|
rm -f .buildpath
|
|
rm -fr .cache
|
|
rm -fr .git
|
|
rm -f .gitmodules
|
|
rm -f .gitignore
|
|
rm -fr .project
|
|
rm -fr .settings
|
|
rm -f build.xml
|
|
rm -f quickbuild.xml
|
|
rm -f pom.xml
|
|
rm -f README.md
|
|
|
|
rm -f htdocs/install/mssql/README
|
|
rm -f htdocs/install/mysql/README
|
|
rm -f htdocs/install/pgsql/README
|
|
|
|
rm -fr dev/codesniffer
|
|
rm -fr dev/codetemplates
|
|
rm -fr dev/dbmodel
|
|
rm -fr dev/initdata
|
|
rm -fr dev/iso-normes
|
|
rm -fr dev/ldap
|
|
rm -fr dev/licence
|
|
rm -fr dev/mail
|
|
rm -fr dev/phpcheckstyle
|
|
rm -fr dev/phpunit
|
|
rm -fr dev/security
|
|
rm -fr dev/spec
|
|
rm -fr dev/test
|
|
rm -fr dev/uml
|
|
rm -fr dev/xdebug
|
|
rm -f dev/dolibarr_changes.txt
|
|
rm -f dev/README
|
|
|
|
rm -f doc/images/dolibarr_screenshot2.png
|
|
rm -f doc/images/dolibarr_screenshot3.png
|
|
rm -f doc/images/dolibarr_screenshot4.png
|
|
rm -f doc/images/dolibarr_screenshot5.png
|
|
rm -f doc/images/dolibarr_screenshot6.png
|
|
rm -f doc/images/dolibarr_screenshot7.png
|
|
rm -f doc/images/dolibarr_screenshot8.png
|
|
rm -f doc/images/dolibarr_screenshot9.png
|
|
rm -f doc/images/dolibarr_screenshot10.png
|
|
rm -f doc/images/dolibarr_screenshot11.png
|
|
rm -f doc/images/dolibarr_screenshot12.png
|
|
|
|
rm -fr test
|
|
|
|
rm -fr build/aps
|
|
rm -fr build/dmg
|
|
rm -fr build/doap
|
|
rm -fr build/exe
|
|
rm -fr build/launchpad
|
|
rm -fr build/live
|
|
rm -fr build/patch
|
|
rm -fr build/perl
|
|
rm -fr build/rpm
|
|
rm -fr build/zip
|
|
|
|
# clean from all embedded libraries (we use package dependencies instead)
|
|
rm -fr htdocs/includes/adodbtime
|
|
rm -fr htdocs/includes/ckeditor
|
|
# rm -fr htdocs/includes/fpdfi
|
|
rm -fr htdocs/includes/fonts
|
|
rm -fr htdocs/includes/geoip
|
|
rm -fr htdocs/includes/nusoap
|
|
rm -fr htdocs/includes/odtphp/zip/pclzip
|
|
rm -fr htdocs/includes/phpmailer
|
|
rm -fr htdocs/includes/jquery/css
|
|
rm -fr htdocs/includes/jquery/js
|
|
rm -fr htdocs/includes/jquery/plugins/flot
|
|
rm -fr htdocs/includes/jquery/plugins/jstree
|
|
rm -fr htdocs/includes/jquery/plugins/lightbox
|
|
rm -fr htdocs/includes/jquery/plugins/mobile
|
|
rm -fr htdocs/includes/jquery/plugins/multiselect
|
|
rm -fr htdocs/includes/phpexcel/PHPExcel/Shared/PDF
|
|
rm -fr htdocs/includes/phpexcel/PHPExcel/Shared/PCLZip
|
|
rm -fr htdocs/includes/tcpdf/fonts/dejavu-fonts-ttf-2.33
|
|
rm -fr htdocs/includes/tcpdf/fonts/freefont-20100919
|
|
rm -fr htdocs/includes/tcpdf/fonts/utils
|
|
|
|
# Licence files are included into copyright file.
|
|
rm -fr htdocs/includes/phpexcel/license.txt
|
|
rm -f htdocs/includes/tcpdf/LICENSE.TXT
|
|
|
|
dh $@
|
|
|
|
binary-arch:
|
|
|