diff options
author | Simon Howard | 2009-06-07 01:56:21 +0000 |
---|---|---|
committer | Simon Howard | 2009-06-07 01:56:21 +0000 |
commit | 61d40373640c0cabdaef4d4381ac5ae636fab642 (patch) | |
tree | ca3d4c32046565352c7b490bb2b72feeba3f50ef /wince/Makefile.am | |
parent | abc69c7cf92181461612d7126f2bdc8da6b9eb76 (diff) | |
download | chocolate-doom-61d40373640c0cabdaef4d4381ac5ae636fab642.tar.gz chocolate-doom-61d40373640c0cabdaef4d4381ac5ae636fab642.tar.bz2 chocolate-doom-61d40373640c0cabdaef4d4381ac5ae636fab642.zip |
Detect Windows CE target and build/include libc_wince files as
necessary.
Subversion-branch: /trunk/chocolate-doom
Subversion-revision: 1561
Diffstat (limited to 'wince/Makefile.am')
-rw-r--r-- | wince/Makefile.am | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/wince/Makefile.am b/wince/Makefile.am index f6c87759..7d694377 100644 --- a/wince/Makefile.am +++ b/wince/Makefile.am @@ -1,8 +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 + |