+ contrib/win32
+ contrib/win32/test
+ contrib/win32/test/testw32p.prg
+ contrib/win32/test/oleenum.prg
- test/oleenum.prg
+ contrib/win32/Makefile
+ contrib/win32/makefile.bc
+ contrib/win32/makefile.vc
+ contrib/win32/make_b32.bat
+ contrib/win32/make_vc.bat
+ contrib/win32/w32_tole.prg
+ contrib/win32/w32_tprn.prg
+ contrib/win32/tprinter.c
+ contrib/win32/w32_ole.c
+ contrib/win32/w32_prn.c
+ Added a Win32 contrib lib by merging win32prn and ole2
libs. The name of the new library is "hbwin32".
; directx was not added for now.
69 lines
600 B
Makefile
69 lines
600 B
Makefile
#
|
|
# $Id$
|
|
#
|
|
|
|
ROOT = ../
|
|
|
|
DIRS=\
|
|
btree \
|
|
htmllib \
|
|
libct \
|
|
libgt \
|
|
libmisc \
|
|
libnf \
|
|
samples \
|
|
xhb \
|
|
$(HB_CONTRIBLIBS)
|
|
|
|
|
|
ifneq ($(HB_ARCHITECTURE),dos)
|
|
|
|
DIRS +=\
|
|
bmdbfcdx \
|
|
|
|
endif
|
|
|
|
ifeq ($(HB_ARCHITECTURE),w32)
|
|
|
|
DIRS +=\
|
|
rdd_ads \
|
|
|
|
ifneq ($(HB_COMPILER),rsxnt)
|
|
|
|
DIRS +=\
|
|
win32 \
|
|
odbc \
|
|
adordd \
|
|
|
|
endif
|
|
|
|
else
|
|
ifeq ($(HB_COMPILER),icc)
|
|
|
|
DIRS +=\
|
|
hgf/os2pm \
|
|
|
|
else
|
|
ifeq ($(HB_ARCHITECTURE),os2)
|
|
|
|
DIRS +=\
|
|
hgf/os2pm \
|
|
|
|
else
|
|
ifeq ($(HB_ARCHITECTURE),linux)
|
|
|
|
DIRS +=\
|
|
rdd_ads \
|
|
odbc \
|
|
|
|
endif
|
|
endif
|
|
endif
|
|
endif
|
|
|
|
ifneq ($(HB_ARCHITECTURE),dos)
|
|
DIRS += tip
|
|
endif
|
|
|
|
include $(ROOT)config/dir.cf
|