Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Bring Makefile.in back. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | symlinks |
Files: | files | file ages | folders |
SHA1: |
67295626750b20135328986287b4acda |
User & Date: | dmitry 2011-09-02 09:34:30.974 |
Context
2011-09-02
| ||
10:19 | Uncomment contents of Makefile.in. Silence OpenSSL deprecation warnings on Mac OS X 10.7. ... (check-in: 73443aa7 user: dmitry tags: symlinks) | |
09:34 | Bring Makefile.in back. ... (check-in: 67295626 user: dmitry tags: symlinks) | |
2011-09-01
| ||
23:55 | Change a couple of unlink()'s to file_delete(). ... (check-in: 61d49d92 user: dmitry tags: symlinks) | |
Changes
Added Makefile.in.
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 | #!/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 # # |