* utils/hbmk2/hbmk2.*.po
* utils/hbmk2/hbmk2.prg
+ added 'description' section to help (visible in -longhelp[md])
+ moved examples (and one note) from README.txt to hbmk2 help
! grammar cleanup and typos in help
* formatting
- website/license.html
* website/*.html
! deleted another obsolete copy of the license and replaced
with links directly to COPYING.txt in repository
* contrib/hbsqlit3/hbsqlit3.ch
* contrib/hbsqlit3/hdbc.prg
* contrib/xhb/cgi.ch
* contrib/xhb/*.prg
* extras/gtwvw/docs/gtwvw.txt
* extras/gtwvw/*.c
! fixed obsolete license references
* tests/inherit.prg
* tests/stripem.prg
* contrib/xhb/*.prg
* use hb_default(), misc cleanups, html closing tags
* config/aix/libs.mk
* doc/xhb-diff.txt
* src/common/hbfsapi.c
* src/rtl/gtcrs/hb-charmap.def
* src/rtl/strcase.c
* website/download.htm
! deleted line ending spaces
* website/download.htm
* doc/gmake.txt
* doc/tracing.txt
* utils/hbmk2/Makefile
* cleanups
45 lines
921 B
Makefile
45 lines
921 B
Makefile
#
|
|
# $Id$
|
|
#
|
|
|
|
# When compiling and linking with -pthread, the library search path should
|
|
# include -L/usr/lib/threads at the beginning of the path.
|
|
# http://www.ibm.com/developerworks/aix/library/au-gnu.html
|
|
# (libc is there)
|
|
ifeq ($(HB_LINKING_VMMT),yes)
|
|
SYSLIBPATHS := /usr/lib/threads
|
|
else
|
|
SYSLIBPATHS :=
|
|
endif
|
|
|
|
ifneq ($(HB_LINKING_RTL),)
|
|
ifeq ($(HB_LIBNAME_CURSES),)
|
|
HB_LIBNAME_CURSES := xcurses
|
|
endif
|
|
ifneq ($(HB_HAS_CURSES),)
|
|
SYSLIBS += $(HB_LIBNAME_CURSES)
|
|
endif
|
|
ifneq ($(HB_HAS_SLANG),)
|
|
SYSLIBS += slang
|
|
endif
|
|
ifneq ($(HB_HAS_X11),)
|
|
SYSLIBS += X11
|
|
SYSLIBPATHS += /usr/X11R6/lib
|
|
endif
|
|
ifneq ($(HB_HAS_PCRE),)
|
|
ifeq ($(HB_HAS_PCRE_LOCAL),)
|
|
SYSLIBS += pcre
|
|
endif
|
|
endif
|
|
ifeq ($(HB_HAS_ZLIB_LOCAL),)
|
|
SYSLIBS += z
|
|
endif
|
|
SYSLIBS += rt
|
|
|
|
ifneq ($(HB_LINKING_VMMT),)
|
|
SYSLIBS += pthread
|
|
endif
|
|
endif
|
|
|
|
SYSLIBS += m
|