* contrib/hbcups/Makefile
* contrib/hbcups/hbcups.hbp
- Disabled for win, wce, dos. It's actually support by
win/mingw and win/cygwin, but it's not very useful plus
enabling it causes much more trouble than benefit at
this point.
* contrib/makefile.prg
* Install .dlls to bin dir.
* contrib/hbide/ideprojmanager.prg
* contrib/hbide/hbide.hbp
- contrib/hbide/resources/hbmk2_plugin_uip.prg
+ contrib/hbide/resources/hbmk2_plugin_ui.prg
* Renamed for consistency.
* contrib/hbide/resources/hbmk2_plugin_ui.prg
* contrib/hbqt/hbmk2_plugin_moc.prg
* Minor cleanup.
31 lines
546 B
Makefile
31 lines
546 B
Makefile
#
|
|
# $Id$
|
|
#
|
|
|
|
ROOT := ../../
|
|
|
|
include $(TOP)$(ROOT)config/global.mk
|
|
|
|
LIBNAME := hbcups
|
|
|
|
C_SOURCES := \
|
|
hbcups.c \
|
|
|
|
_DET_DSP_NAME := cups
|
|
_DET_VAR_INC_ := HB_INC_CUPS
|
|
_DET_VAR_HAS_ := HB_HAS_CUPS
|
|
_DET_FLT_PLAT := !win !wce !dos
|
|
_DET_FLT_COMP :=
|
|
_DET_INC_DEFP := /usr/include
|
|
_DET_INC_HEAD := /cups/cups.h
|
|
include $(TOP)$(ROOT)config/detfun.mk
|
|
|
|
ifneq ($(HB_HAS_CUPS),)
|
|
HB_CFLAGS += $(foreach d,$(HB_HAS_CUPS),-I$(d))
|
|
|
|
include $(TOP)$(ROOT)config/lib.mk
|
|
else
|
|
HB_SKIP_REASON := $(_DET_RES_TEXT)
|
|
include $(TOP)$(ROOT)config/none.mk
|
|
endif
|