diff options
Diffstat (limited to 'wince/Makefile.am')
-rw-r--r-- | wince/Makefile.am | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/wince/Makefile.am b/wince/Makefile.am new file mode 100644 index 00000000..7d694377 --- /dev/null +++ b/wince/Makefile.am @@ -0,0 +1,16 @@ + +noinst_LIBRARIES=libc_wince.a + +if WINDOWS_CE + +libc_wince_a_SOURCES = \ + env.c env.h \ + errno.c errno.h \ + fileops.c fileops.h + +else + +libc_wince_a_SOURCES = + +endif + |