580a51b659
[COMPILER] * NEW: Remove Md5() and other hash native functions. [INTERPRETER] * NEW: Remove Md5() and other hash native functions. [GB.HASH] * NEW: 'Hash' is a new static class with methods that implement The 'Md5', 'Sha1', 'Sha256' and 'Sha512' hash functions.
14 lines
273 B
Makefile
14 lines
273 B
Makefile
COMPONENT = gb.hash
|
|
include $(top_srcdir)/component.am
|
|
|
|
gblib_LTLIBRARIES = gb.hash.la
|
|
|
|
gb_hash_la_LDFLAGS = -module @LD_FLAGS@
|
|
gb_hash_la_CFLAGS = -I$(top_srcdir)/share $(AM_CFLAGS)
|
|
|
|
gb_hash_la_SOURCES = \
|
|
main.h main.c \
|
|
hash.h hash.c platform.h \
|
|
c_hash.h c_hash.c
|
|
|
|
|