30
31
32
33
34
35
36
37
38
39
40
41
|
#### Extra arguments for linking the finished binary. Fossil needs
# to link against the Z-Lib compression library. There are no
# other dependencies. We sometimes add the -static option here
# so that we can build a static executable that will run in a
# chroot jail.
#
LIB = -lz -static
# You should not need to change anything below this line
###############################################################################
include $(SRCDIR)/main.mk
|
|
|
30
31
32
33
34
35
36
37
38
39
40
41
|
#### Extra arguments for linking the finished binary. Fossil needs
# to link against the Z-Lib compression library. There are no
# other dependencies. We sometimes add the -static option here
# so that we can build a static executable that will run in a
# chroot jail.
#
LIB = -lz
# You should not need to change anything below this line
###############################################################################
include $(SRCDIR)/main.mk
|