32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
#### 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 = @LDFLAGS@ @EXTRA_LDFLAGS@ @LIBS@
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 GNUmakefile
|
|
|
|
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
#### 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 = @LDFLAGS@ @EXTRA_LDFLAGS@ @LIBS@
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 GNUmakefile
|