Add to the distribution
[mono.git] / mono / utils / Makefile.am
index ed6927e5894825a570a03bf32bb6f63c476f1dbc..15a917c881ca15518bebd565743bf5fe5d2f5161 100644 (file)
@@ -1,14 +1,45 @@
-lib_LIBRARIES = libmonoutils.a
+noinst_LTLIBRARIES = libmonoutils.la
 
-INCLUDES = $(GLIB_CFLAGS) $(GMODULE_CFLAGS) -I$(top_srcdir)    -I$(top_srcdir)/mono 
+INCLUDES = -I$(top_srcdir) -I$(top_srcdir)/mono $(LIBGC_CFLAGS) $(GLIB_CFLAGS) $(GMODULE_CFLAGS)
 
-libmonoutils_a_SOURCES = \
-       mono-hash.c     \
-       mono-hash.h
+if EGLIB_BUILD 
+hash_sources = mono-ehash.c
+else
+hash_sources = mono-hash.c
+endif
 
-libmonoutilsincludedir = $(includedir)/mono/utils
+libmonoutils_la_SOURCES = \
+       $(hash_sources) \
+       mono-md5.c      \
+       mono-sha1.c     \
+       mono-logger.c   \
+       mono-codeman.c  \
+       mono-counters.c \
+       mono-compiler.h \
+       monobitset.c    \
+       mono-math.c  \
+       strtod.h        \
+       strtod.c        \
+       strenc.h        \
+       strenc.c        \
+       mono-uri.c      \
+       mono-poll.c     \
+       mono-path.c     \
+       mono-stdlib.c
 
-libmonoutilsinclude_HEADERS = 
+libmonoutilsincludedir = $(includedir)/mono/utils
 
-EXTRA_DIST = ChangeLog
+libmonoutilsinclude_HEADERS = \
+       monobitset.h    \
+       mono-codeman.h  \
+       mono-counters.h \
+       mono-digest.h   \
+       mono-logger.h   \
+       mono-hash.h     \
+       mono-math.h     \
+       mono-path.h     \
+       mono-poll.h     \
+       mono-uri.h      \
+       mono-stdlib.h
 
+EXTRA_DIST = ChangeLog mono-hash.c mono-hash.h mono-ehash.c