* source/vm/Makefile
+ source/vm/maindllp
+ source/vm/maindllp/Makefile
+ Added generation of hbmaindllp lib, to create pcode .dlls
on Windows platform. -DHB_DYNLIB is always defined for
this lib. This is just the first step, we will need compiler,
hbmk2 and other changes. I'll contribute with hbmk2 changes.
* source/vm/maindllp.c
% Code made less verbose.
! Created HB_EXPORT declaration for DllEntryPoint().
* config/win/icc.cf
* Changed optimization to -O3 (from MSVC ones).
With max optim (-Ox) it was just a bit faster than MSVC 2008.
+ contrib/hbqt
+ contrib/hbqt/hbqt_qabstractbutton.cpp
+ contrib/hbqt/hbqt_qdialog.cpp
+ contrib/hbqt/hbqt.h
+ contrib/hbqt/Makefile
+ Added initial QT wrapper lib layout with content posted
by Pritpal to the list. (I did a few renames, please check
them)
* contrib/hbwin/hbwapi.h
* Fixes in header.
18 lines
182 B
Makefile
18 lines
182 B
Makefile
#
|
|
# $Id$
|
|
#
|
|
|
|
vpath %.c ../
|
|
|
|
ROOT = ../../../
|
|
|
|
C_SOURCES=\
|
|
maindllp.c \
|
|
|
|
LIBNAME=hbmaindllp
|
|
|
|
# always export symbols
|
|
HB_USER_CFLAGS += -DHB_DYNLIB
|
|
|
|
include $(TOP)$(ROOT)config/lib.cf
|