* config/ren_sfn.prg
* external/minizip/Makefile
* external/zlib/Makefile
* external/sqlite3/Makefile
- external/png/link.txt
* external/png/Makefile
* external/jpeg/Makefile
- external/jpeg/link.txt
- external/bzip2/ren_sfn.txt
* external/bzip2/Makefile
* external/libhpdf/Makefile
- external/libhpdf/ren_sfn.txt
- external/libhpdf/link.txt
- external/pcre/ren_sfn.txt
* external/pcre/Makefile
+ Integrated ren_sfn.txt logic into Makefiles.
+ Add link.txt content into Makefiles.
+ Added links for all libs which didn't have one.
* include/vm.api
- Deleted ULONG casts.
29 lines
435 B
Makefile
29 lines
435 B
Makefile
#
|
|
# $Id$
|
|
#
|
|
|
|
ROOT := ../../
|
|
|
|
include $(TOP)$(ROOT)config/global.mk
|
|
|
|
LIBNAME := minizip
|
|
|
|
# URL: http://zlib.net/zlib125.zip
|
|
|
|
HB_BUILD_WARN := no
|
|
HB_BUILD_MODE := c
|
|
|
|
C_SOURCES := \
|
|
ioapi.c \
|
|
zip.c \
|
|
unzip.c \
|
|
|
|
ifneq ($(HB_HAS_ZLIB),)
|
|
HB_CFLAGS += -DHB_HAS_ZLIB $(foreach d,$(HB_HAS_ZLIB),-I$(d))
|
|
|
|
include $(TOP)$(ROOT)config/lib.mk
|
|
else
|
|
HB_SKIP_REASON := component not found
|
|
include $(TOP)$(ROOT)config/none.mk
|
|
endif
|