* harbour/contrib/hbgf/Makefile
* do not include dir.cf when there is no platform dependent
hbgf* library
24 lines
278 B
Makefile
24 lines
278 B
Makefile
#
|
|
# $Id$
|
|
#
|
|
|
|
ROOT = ../../
|
|
|
|
ifeq ($(HB_ARCHITECTURE),w32)
|
|
DIRS = hbgfw32
|
|
endif
|
|
|
|
ifeq ($(HB_ARCHITECTURE),linux)
|
|
DIRS = hbgfgtk
|
|
endif
|
|
|
|
ifeq ($(HB_ARCHITECTURE),os2)
|
|
DIRS = hbgfos2
|
|
endif
|
|
|
|
ifneq ($(DIRS),)
|
|
include $(ROOT)config/dir.cf
|
|
else
|
|
include $(TOP)$(ROOT)config/none.cf
|
|
endif
|