diff options
author | lars@mysql.com <> | 2005-10-14 01:14:23 +0200 |
---|---|---|
committer | lars@mysql.com <> | 2005-10-14 01:14:23 +0200 |
commit | 0abcffcb5df992724794582f21bbcdb552fa6d98 (patch) | |
tree | 9fe13b0ce30556fa9575d30b25fe47c35aac1393 /mysys/Makefile.am | |
parent | cac5b085cd17836028a2c47c4c19066c4dd0b5a9 (diff) | |
download | mariadb-git-0abcffcb5df992724794582f21bbcdb552fa6d98.tar.gz |
WL#2835: Base64 mysys functions
Diffstat (limited to 'mysys/Makefile.am')
-rw-r--r-- | mysys/Makefile.am | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/mysys/Makefile.am b/mysys/Makefile.am index 9c58c18cf59..ee0dcb544b6 100644 --- a/mysys/Makefile.am +++ b/mysys/Makefile.am @@ -55,7 +55,7 @@ libmysys_a_SOURCES = my_init.c my_getwd.c mf_getdate.c my_mmap.c \ charset.c charset-def.c my_bitmap.c my_bit.c md5.c \ my_gethostbyname.c rijndael.c my_aes.c sha1.c \ my_handler.c my_netware.c my_largepage.c \ - my_windac.c my_access.c + my_windac.c my_access.c base64.c EXTRA_DIST = thr_alarm.c thr_lock.c my_pthread.c my_thr_init.c \ thr_mutex.c thr_rwlock.c libmysys_a_LIBADD = @THREAD_LOBJECTS@ @@ -116,5 +116,10 @@ test_gethwaddr$(EXEEXT): my_gethwaddr.c $(LIBRARIES) $(LINK) $(FLAGS) -DMAIN ./test_gethwaddr.c $(LDADD) $(LIBS) $(RM) -f ./test_gethwaddr.c +test_base64$(EXEEXT): base64.c $(LIBRARIES) + $(CP) $(srcdir)/base64.c ./test_base64.c + $(LINK) $(FLAGS) -DMAIN ./test_base64.c $(LDADD) $(LIBS) + $(RM) -f ./test_base64.c + # Don't update the files from bitkeeper %::SCCS/s.% |