# # If you add a new variable to this file (mk/make_config), # make sure to also add a default value to mk/defaults. # # # Function to generate the config file # MakeConfig(CONFIG_FILE) = # # If possible, express PREFIX subdirs via $(PREFIX)/... # if $(equal $(BINDIR), $(dir $(PREFIX)/bin)) BINDIR = $'$(PREFIX)/bin' export if $(equal $(LIBDIR), $(dir $(PREFIX)/lib)) LIBDIR = $'$(PREFIX)/lib' export if $(equal $(MANDIR), $(dir $(PREFIX)/man)) MANDIR = $'$(PREFIX)/man' export CONFIG = $"""\ # Main OMake configuration file. # # This file ($(CONFIG_FILE)) is generated by omake using mk/make_config. # If you want to change anything except for the variable values, # put it into $(CONFIG_FILE).local. # # # Where is the install location? OMake installs files into the # following directories. # BINDIR: program executables # LIBDIR: omake standard library # MANDIR: documentation # PREFIX = $$(dir $$'$(PREFIX)') BINDIR = $$(dir $$"$(BINDIR)") LIBDIR = $$(dir $$"$(LIBDIR)") MANDIR = $$(dir $$"$(MANDIR)") # # What C compiler do you want to use? # By default, the C compiler is "cc", unless "gcc" is found on your system. # CC = $(CC) CFLAGS = $(CFLAGS) # # Do you want native and/or byte code? # By default, we make native code. If you want # byte code, set it to true. # NATIVE_ENABLED = $(NATIVE_ENABLED) BYTE_ENABLED = $(BYTE_ENABLED) # # Do you want to enable native-code profiling? # Unless you really care, you should leave this disabled. # NATIVE_PROFILE = $(NATIVE_PROFILE) """$(if $(READLINE_AVAILABLE), $""" # # Do you want to include readline for the interactive shell? # Your system appears to support readline, so this is enabled by default. # READLINE_ENABLED = $(READLINE_ENABLED) """, $""" # # Your system does not appear to have the readline library development files # installed, readline support in the interactive shell will not be available. # """)$(if $(NCURSES_AVAILABLE), $""" # # Do you want to include terminal information (terminfo) capabilities? # Your system appears to support ncurses, so this is enabled by default. # NCURSES_ENABLED = $(NCURSES_ENABLED) """, $""" # # Your system does not appear to have the ncurses library development files # installed, terminal information (terminfo) capabilities will not be available. # """)$(if $(FAM_AVAILABLE), $""" # # Do you want to include filesystem monitoring? This will enable the # omake -P and -p options, which are quite useful. # Your system appears to support this functionality (via FAM, Gamin, kqueue, or Win32). # FAM_ENABLED = $(FAM_ENABLED) """, $""" # # Your system does not appear to support filesystem monitoring (either FAM library, # or Gamin library, or Kqueue event interface). Omake's -P and -p options will not # be available. # """)$""" # # By default, how often should the .omakedb database be saved (in seconds, can be # a floating point number). # DEFAULT_SAVE_INTERVAL = $(DEFAULT_SAVE_INTERVAL) """$(if $(OCAMLDEP_MODULES_AVAILABLE), $""" # # The OCAMLDEP_MODULES_ENABLED variable specifies whether to use the -modules # option to ocamldep. Dependency analysis is much better with this option, # but it is also a little slower. Also, the -modules option is not yet # available with the standard OCaml distribution (this option is expected to be # included in OCaml 3.10 release). OMake includes a patched ocamldep, in case # you want to use it anyway. # OCAMLDEP_MODULES_ENABLED = $(OCAMLDEP_MODULES_ENABLED) """, $""" # # Your system does not seem to have a version of the ocamldep that supports the # new -modules option. Will use the traditional (potentially less precise) # dependency analysis. # # OCAMLDEP_MODULES_ENABLED is false """) # Save the text in the output file exists = $(file-exists $(CONFIG_FILE)) if $(exists) eprintln(Updating the $(CONFIG_FILE) file.) fprint($(CONFIG_FILE), $(CONFIG))