* harbour/external/Makefile
+ harbour/external/hbpmcom
+ harbour/external/hbpmcom/Makefile
+ harbour/external/hbpmcom/wrap_ow.c
+ harbour/external/hbpmcom/com.c
+ harbour/external/hbpmcom/irq.h
+ harbour/external/hbpmcom/irq_ow.c
+ harbour/external/hbpmcom/irq_g.c
+ harbour/external/hbpmcom/com.h
+ harbour/external/hbpmcom/wrap_g.sx
+ harbour/external/hbpmcom/irqwrap.h
+ harbour/external/hbpmcom/doc
+ harbour/external/hbpmcom/doc/readme.txt
+ harbour/external/hbpmcom/doc/com.txt
+ added PMCOM library - RS-232 DOS communication library by Peter Marinov.
The original PMCOM 1.0 library has not been updated for very long
time and this code is quite strongly modified so I haven't tried to
generate any .diff files. I do not think it will be possible to make
autoamtic merege with newwer version (if any appears).
This is also the reason I decided to use HBPMCOM name instead of
PMCOM to avoid potential conflicts with some local versions of
this library.
TODO: add support for flow control - now flow control functions are
dummy and do not enable any handshaking.
* harbour/src/rtl/hbcom.c
* harbour/config/dos/watcom.mk
* harbour/config/dos/djgpp.mk
+ added support for serial port in DOS builds (hb_com*() PRG and C API)
using HBPMCOM library.
31 lines
413 B
Makefile
31 lines
413 B
Makefile
#
|
|
# $Id$
|
|
#
|
|
|
|
ROOT := ../
|
|
|
|
DIRS := \
|
|
sqlite3 \
|
|
bzip2 \
|
|
libhpdf \
|
|
hbpmcom \
|
|
png \
|
|
jpeg \
|
|
pcre \
|
|
zlib \
|
|
minizip \
|
|
|
|
ifeq ($(firstword $(HB_EXTERNALLIBS)),no)
|
|
DIRS := $(filter-out $(HB_EXTERNALLIBS),$(DIRS))
|
|
else
|
|
ifneq ($(HB_EXTERNALLIBS),)
|
|
DIRS := $(HB_EXTERNALLIBS)
|
|
endif
|
|
endif
|
|
|
|
ifneq ($(DIRS),)
|
|
include $(TOP)$(ROOT)config/dir.mk
|
|
else
|
|
include $(TOP)$(ROOT)config/none.mk
|
|
endif
|