* include/hbthread.h
* include/hbdefs.h
* include/hbsetup.h
* include/hbatomic.h
* include/hbfloat.h
* src/vm/task.c
* src/common/hbgete.c
* src/common/hbver.c
* src/common/hbprintf.c
* src/rtl/gtcrs/gtcrs.h
* src/rtl/hbsocket.c
* utils/hbmk2/hbmk2.prg
* config/detplat.mk
* config/global.mk
* config/detect.mk
+ config/minix
+ config/minix/libs.mk
+ config/minix/gcc.mk
+ config/minix/ack.mk
+ config/minix/global.mk
+ Added Harbour port for minix 3 operating system.
; Created by Tamas Tevesz. Many thanks!
32 lines
573 B
Makefile
32 lines
573 B
Makefile
#
|
|
# $Id$
|
|
#
|
|
|
|
SYSLIBPATHS := /usr/lib /usr/pkg/lib
|
|
|
|
ifneq ($(HB_LINKING_RTL),)
|
|
ifeq ($(HB_LIBNAME_CURSES),)
|
|
HB_LIBNAME_CURSES := ncurses
|
|
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/pkg/X11R6/lib
|
|
endif
|
|
ifneq ($(HB_HAS_PCRE),)
|
|
ifeq ($(HB_HAS_PCRE_LOCAL),)
|
|
SYSLIBS += pcre
|
|
endif
|
|
endif
|
|
ifeq ($(HB_HAS_ZLIB_LOCAL),)
|
|
SYSLIBS += z
|
|
endif
|
|
endif
|
|
|
|
SYSLIBS += m
|