gambas-source-code/main/lib/hash/Makefile.am
Benoît Minisini 580a51b659 Replace hash native functions by static methods in a 'Hash' class implemented in the 'gb.hash' component.
[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.
2022-09-17 22:41:29 +02:00

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