See ChangeLog entry 2003-05-09 23:30 UTC-0400 David G. Holm <dholm@jsd-llc.com>

This commit is contained in:
David G. Holm
2003-05-10 03:33:25 +00:00
parent 9abbfc1344
commit d2db82e917
3 changed files with 16 additions and 5 deletions

View File

@@ -8,6 +8,12 @@
2002-12-01 23:12 UTC+0100 Foo Bar <foo.bar@foobar.org>
*/
2003-05-09 23:30 UTC-0400 David G. Holm <dholm@jsd-llc.com>
* config/doc.cf
* config/header.cf
! Fixes to deal with situation where installation
directories are left undefined to avoid installation.
2003-05-09 20:30 UTC-0400 David G. Holm <dholm@jsd-llc.com>
* config/doc.cf
! Removed an extra layer of "protection" that resulted in an

View File

@@ -9,10 +9,14 @@ include $(TOP)$(ROOT)config/global.cf
first::
ifeq ($(HB_DOC_INSTALL),)
install::
else
INSTALL_OBJS = $(DOC_FILES)
INSTALL_DIR = $(HB_DOC_INSTALL)$(DOC_SUBDIR)
include $(TOP)$(ROOT)config/install.cf
endif
endif
endif

View File

@@ -7,17 +7,18 @@ ifneq ($(HB_COMPILER),)
include $(TOP)$(ROOT)config/global.cf
#EXE_NAME = $(C_MAIN:.c=$(EXE_EXT))
#EXE_ARCH = $(ARCH_DIR)$(EXE_NAME)
ALL_HEADERS = $(C_HEADERS) $(PRG_HEADERS) $(API_HEADERS)
first::
ifeq ($(HB_INC_INSTALL),)
install::
else
INSTALL_OBJS = $(ALL_HEADERS)
INSTALL_DIR = $(HB_INC_INSTALL)
include $(TOP)$(ROOT)config/install.cf
endif
endif
endif