Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Do not use a subdirectory named "obj" for building. Ticket [6e51013097c17ead]. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: | e663bac6f77e41b66902631ab1135dde |
User & Date: | drh 2010-11-09 10:48:02 |
Context
2010-11-09
| ||
11:05 | Merge the import/export changes into trunk. Even though they are incomplete, they do not threaten the correctness of other commands and can be developed in trunk. check-in: 0f024d3e user: drh tags: trunk | |
10:48 | Do not use a subdirectory named "obj" for building. Ticket [6e51013097c17ead]. check-in: e663bac6 user: drh tags: trunk | |
10:44 | For cloning and syncing, give all users the privileges of both "nobody" and "anonymous" without requiring a login message. Ticket [1318677c15af04480b]. check-in: 134f5b37 user: drh tags: trunk | |
Changes
Changes to Makefile.
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
# the following to point from the build directory to the src/ folder.
#
SRCDIR = ./src
#### The directory into which object code files should be written.
#
#
OBJDIR = ./obj
#### 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 = gcc -g -O2
|
| |
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
# the following to point from the build directory to the src/ folder.
#
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 = gcc -g -O2
|