* debian/rules
* src/pp/Makefile
* src/dynlib/mt/Makefile
* src/dynlib/Makefile
* package/harbour-win.spec
* package/harbour-wce.spec
* package/harbour.spec
* contrib/make.hbs
* utils/hbmk2/hbmk2.1
* utils/hbmk2/hbmk2.prg
* utils/hbrun/hbrun.prg
* utils/hbrun/hbrun.hbp
* utils/hbrun/Makefile
* doc/gmake.txt
* config/postinst.hbs
* config/global.mk
* config/lib.mk
* config/bin.mk
* config/header.mk
* config/dyn.mk
* config/doc.mk
* INSTALL
* Renamed install dir control envvars to be in the same
"namespace": (INCOMPATIBLE if you used to manually
configure these)
HB_BIN_INSTALL -> HB_INSTALL_BIN
HB_LIB_INSTALL -> HB_INSTALL_LIB
HB_DYN_INSTALL -> HB_INSTALL_DYN
HB_INC_INSTALL -> HB_INSTALL_INC
HB_DOC_INSTALL -> HB_INSTALL_DOC
HB_MAN_INSTALL -> HB_INSTALL_MAN
HB_ETC_INSTALL -> HB_INSTALL_ETC
* contrib/hbide/idemisc.prg
- Deleted unused code.
75 lines
1.5 KiB
Makefile
Executable File
75 lines
1.5 KiB
Makefile
Executable File
#!/usr/bin/make -f
|
|
# -*- makefile -*-
|
|
# Sample debian/rules that uses debhelper.
|
|
# GNU copyright 1997 to 1999 by Joey Hess.
|
|
|
|
# Uncomment this to turn on verbose mode.
|
|
#export DH_VERBOSE := 1
|
|
|
|
export HB_INSTALL_BIN := $(CURDIR)/debian/harbour/usr/bin
|
|
export HB_INSTALL_LIB := $(CURDIR)/debian/harbour/usr/lib/harbour
|
|
export HB_INSTALL_INC := $(CURDIR)/debian/harbour/usr/include/harbour
|
|
export HB_INSTALL_DOC := $(CURDIR)/debian/harbour/usr/share/doc/harbour
|
|
export HB_INSTALL_MAN := $(CURDIR)/debian/harbour/usr/share/man
|
|
export HB_INSTALL_ETC := $(CURDIR)/debian/harbour/etc/harbour
|
|
|
|
export HB_BUILD_PKG := no
|
|
export HB_BUILD_SHARED := yes
|
|
ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
|
|
export HB_BUILD_OPTIM := no
|
|
endif
|
|
|
|
build: build-stamp
|
|
|
|
build-stamp:
|
|
dh_testdir
|
|
|
|
make
|
|
|
|
touch build-stamp
|
|
|
|
clean:
|
|
dh_testdir
|
|
dh_testroot
|
|
rm -f build-stamp configure-stamp
|
|
|
|
-make clean
|
|
|
|
dh_clean
|
|
|
|
install: build
|
|
dh_testdir
|
|
dh_testroot
|
|
dh_clean -k
|
|
dh_installdirs
|
|
|
|
make install
|
|
|
|
|
|
# Build architecture-independent files here.
|
|
binary-indep: build install
|
|
# We have nothing to do by default.
|
|
|
|
# Build architecture-dependent files here.
|
|
binary-arch: build install
|
|
dh_testdir
|
|
dh_testroot
|
|
dh_installchangelogs
|
|
dh_installdocs
|
|
dh_installexamples
|
|
# dh_install
|
|
dh_installman
|
|
dh_link
|
|
dh_strip
|
|
dh_compress
|
|
dh_fixperms
|
|
# dh_makeshlibs
|
|
dh_installdeb
|
|
dh_shlibdeps
|
|
dh_gencontrol
|
|
dh_md5sums
|
|
dh_builddeb
|
|
|
|
binary: binary-indep binary-arch
|
|
.PHONY: build clean binary-indep binary-arch binary install configure
|