#!/usr/bin/make
#
## This is the top-level makefile for Fossil when the build is occurring
# on a unix platform. This works out-of-the-box on most unix platforms.
# # But you are free to vary some of the definitions if desired.
# #
# #### The toplevel directory of the source tree. Fossil can be built
# # in a directory that is separate from the source tree. Just change
# # the following to point from the build directory to the src/ folder.
# #
# SRCDIR = @srcdir@/src
#
# #### The directory into which object code files should be written.
# #
# #
# OBJDIR = ./bld
#
# #### C Compiler and options for use in building executables that
# # will run on the platform that is doing the build. This is used
# # to compile code-generator programs as part of the build process.
# # See TCC below for the C compiler for building the finished binary.
# #
# BCC = @CC_FOR_BUILD@
#
# #### The suffix to add to final executable file. When cross-compiling
# # to windows, make this ".exe". Otherwise leave it blank.
# #
# E = @EXEEXT@
#
# TCC = @CC@
#
# #### Tcl shell for use in running the fossil testsuite. If you do not
# # care about testing the end result, this can be blank.
# #
# TCLSH = tclsh
#
# LIB =LIB@LDFLAGS@ @EXTRA_LDFLAGS@ @LIBS@
# TCC +=TCC@EXTRA_CFLAGS@ @CPPFLAGS@ @CFLAGS@ -DHAVE_AUTOCONFIG_H
# INSTALLDIR = $(DESTDIR)@prefix@/bin
# USE_SYSTEM_SQLITE = @USE_SYSTEM_SQLITE@
#
# include $(SRCDIR)/main.mk
#
# distclean: clean
# rm -f autoconfig.h config.log Makefile
#
#