f469044015
* NEW: New component that manages MIME messages. It is based on the GMime library. Just the beginning of the implementation, not tested. git-svn-id: svn://localhost/gambas/trunk@5112 867c0c6c-44f3-4631-809d-bfa615b0a4ec
12 lines
307 B
Makefile
12 lines
307 B
Makefile
COMPONENT = gb.mime
|
|
include $(top_srcdir)/component.am
|
|
|
|
gblib_LTLIBRARIES = gb.mime.la
|
|
|
|
gb_mime_la_LIBADD = @MIME_LIB@
|
|
gb_mime_la_LDFLAGS = -module @LD_FLAGS@ @MIME_LDFLAGS@
|
|
gb_mime_la_CPPFLAGS = @MIME_INC@
|
|
|
|
gb_mime_la_SOURCES = main.c main.h \
|
|
c_mimemessage.h c_mimemessage.c \
|
|
c_mimepart.h c_mimepart.c
|