Files
harbour-core/harbour/contrib/hbtpathy/Makefile
Viktor Szakats d0596ffa2b 2008-07-07 06:57 UTC+0200 Viktor Szakats (harbour.01 syenar hu)
* make_deb.sh
     + Added libgpm-dev to mouse test. Thanks Guy.

   - doc/simplex.txt
   * doc/Makefile
     - Removed obsolete file.

   * doc/linux1st.txt
     + Added libgpm*-dev requirements.

   * contrib/hbtpathy/Makefile
   * contrib/hbziparch/Makefile
     ! Fixed referring to win32 archictecture as 'win32' 
       (should be 'w32'). Recently introduced bugs.

   * contrib/hbfimage/fi_winfu.c
   * contrib/hbfimage/fi_wrp.c
     ! Fixed for POCC, XCC compilers.
2008-07-07 05:00:07 +00:00

48 lines
567 B
Makefile

#
# $Id$
#
ROOT = ../../
LIBNAME=hbtpathy
C_SOURCES=
ifeq ($(HB_ARCHITECTURE),linux)
C_SOURCES=\
tplinux.c \
tpcommon.c \
endif
ifeq ($(HB_ARCHITECTURE),w32)
C_SOURCES=\
tpwin32.c \
tpcommon.c \
endif
ifeq ($(HB_ARCHITECTURE),os2)
C_SOURCES=\
tpos2.c \
tpcommon.c \
endif
ifneq ($(C_SOURCES),)
PRG_SOURCES=\
telepath.prg \
PRG_HEADERS=\
telepath.ch \
include $(TOP)$(ROOT)config/header.cf
INSTALL_RULE_HEADERS := $(INSTALL_RULE)
include $(TOP)$(ROOT)config/lib.cf
install::
$(INSTALL_RULE_HEADERS)
else
include $(TOP)$(ROOT)config/none.cf
endif