* Makefile (MCS) [PROFILE=default]: Force testing of 'mcs'.
[mono.git] / mono / io-layer / Makefile.am
index 14d1a299b11defe8144b4bd184510eb7cdd27fd1..a9625478458f685eb8e84b990d9e4dde97a8d056 100644 (file)
@@ -4,7 +4,6 @@ INCLUDES = \
        $(GLIB_CFLAGS)          \
        $(GMODULE_CFLAGS)       \
        $(LIBGC_CFLAGS)         \
-       -D_WAPI_BUILDING=1      \
        -DMONO_BINDIR=\""$(bindir)"\"   \
        -I$(top_srcdir) 
 
@@ -24,6 +23,7 @@ OTHER_H = \
        mono-mutex.h    \
        mutexes.h       \
        processes.h     \
+       security.h      \
        semaphores.h    \
        sockets.h       \
        status.h        \
@@ -72,6 +72,8 @@ OTHER_SRC = \
        processes.c             \
        processes.h             \
        process-private.h       \
+       security.c              \
+       security.h              \
        semaphores.c            \
        semaphores.h            \
        semaphore-private.h     \
@@ -80,6 +82,7 @@ OTHER_SRC = \
        sockets.c               \
        sockets.h               \
        socket-private.h        \
+       socket-wrappers.h       \
        status.h                \
        system.c                \
        system.h                \
@@ -93,8 +96,6 @@ OTHER_SRC = \
        timed-thread.h          \
        types.h                 \
        uglify.h                \
-       unicode.c               \
-       unicode.h               \
        versioninfo.h           \
        wait.c                  \
        wait.h                  \
@@ -108,16 +109,26 @@ WINDOWS_SRC = \
        io-layer.h              \
        io-layer-dummy.c
 
+HPPA_SRC = \
+       hppa_atomic.s
+
 if PLATFORM_WIN32
 libwapi_la_SOURCES = $(WINDOWS_SRC)
 libwapiinclude_HEADERS = $(WINDOWS_H)
 else
+if HPPA
+libwapi_la_SOURCES = $(OTHER_SRC) $(HPPA_SRC)
+# to enable pick up of config.h
+libwapi_la_CCASFLAGS = -I$(top_builddir)
+else
 libwapi_la_SOURCES = $(OTHER_SRC)
+endif
 libwapiinclude_HEADERS = $(OTHER_H)
 endif
 
 EXTRA_DIST =   \
        $(WINDOWS_SRC)  \
+        $(HPPA_SRC) \
        $(OTHER_SRC)