49 lines
1.3 KiB
Plaintext
49 lines
1.3 KiB
Plaintext
XCOMM $TOG: Imakefile /main/1 1998/03/11 16:08:16 mgreess $
|
|
TOOL_DIR = ../../dbTools
|
|
DATABASE_DIR = ../../../../databases
|
|
|
|
#ifdef HPArchitecture
|
|
PLATFORM = hp-ux
|
|
#endif
|
|
#ifdef LinuxArchitecture
|
|
PLATFORM = linux
|
|
#endif
|
|
#ifdef FreeBSDArchitecture
|
|
PLATFORM = freebsd
|
|
#endif
|
|
#ifdef OpenBSDArchitecture
|
|
PLATFORM = openbsd
|
|
#endif
|
|
#ifdef RsArchitecture
|
|
PLATFORM = aix
|
|
#endif
|
|
#ifdef SunArchitecture
|
|
PLATFORM = sun
|
|
.NO_PARALLEL:
|
|
#endif
|
|
|
|
UDBTOANY = $(KORNSHELL) $(TOOL_DIR)/udbToAny.ksh
|
|
BUILD_UDB_LIST = $(SHELL) ../build_udb_list
|
|
|
|
all::
|
|
|
|
DoUDB_SCRIPT4(configMin,CDE-MIN,$(UDBTOANY),$(BUILD_UDB_LIST))
|
|
DoUDB_SCRIPT4(configTT,CDE-TT,$(UDBTOANY),$(BUILD_UDB_LIST))
|
|
DoUDB_SCRIPT4(configRun,CDE-RUN,$(UDBTOANY),$(BUILD_UDB_LIST))
|
|
DoUDB_SCRIPT4(configShlibs,CDE-SHLIBS,$(UDBTOANY),$(BUILD_UDB_LIST))
|
|
|
|
|
|
LOCAL_CPP_DEFINES = -DCDE_INSTALLATION_TOP=$(CDE_INSTALLATION_TOP) \
|
|
-DCDE_CONFIGURATION_TOP=$(CDE_CONFIGURATION_TOP) \
|
|
-DCDE_LOGFILES_TOP=$(CDE_LOGFILES_TOP)
|
|
|
|
AllTarget(configShlibs configTT configRun configMin)
|
|
|
|
CppScriptTarget(configShlibs,configShlibs.src,$(LOCAL_CPP_DEFINES),)
|
|
CppScriptTarget(configTT,configTT.src,$(LOCAL_CPP_DEFINES),)
|
|
CppScriptTarget(configRun,configRun.src,$(LOCAL_CPP_DEFINES),)
|
|
CppScriptTarget(configMin,configMin.src,$(LOCAL_CPP_DEFINES),)
|
|
|
|
clean::
|
|
$(RM) *.lst *.list
|