Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(401)

Side by Side Diff: newlib/libc/posix/Makefile.am

Issue 650343002: Split posix_spawn.c into 3 different files (Closed) Base URL: http://git.chromium.org/native_client/nacl-newlib.git@master
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « newlib/libc/include/spawn.h ('k') | newlib/libc/posix/Makefile.in » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 ## Process this file with automake to generate Makefile.in 1 ## Process this file with automake to generate Makefile.in
2 2
3 AUTOMAKE_OPTIONS = cygnus 3 AUTOMAKE_OPTIONS = cygnus
4 4
5 INCLUDES = $(NEWLIB_CFLAGS) $(CROSS_CFLAGS) $(TARGET_CFLAGS) 5 INCLUDES = $(NEWLIB_CFLAGS) $(CROSS_CFLAGS) $(TARGET_CFLAGS)
6 6
7 GENERAL_SOURCES = \ 7 GENERAL_SOURCES = \
8 closedir.c collate.c collcmp.c creat.c \ 8 closedir.c collate.c collcmp.c creat.c \
9 fnmatch.c glob.c _isatty.c isatty.c \ 9 fnmatch.c glob.c _isatty.c isatty.c \
10 opendir.c readdir.c readdir_r.c \ 10 opendir.c readdir.c readdir_r.c \
11 regcomp.c regerror.c regexec.c regfree.c \ 11 regcomp.c regerror.c regexec.c regfree.c \
12 rewinddir.c sleep.c usleep.c \ 12 rewinddir.c sleep.c usleep.c \
13 telldir.c 13 telldir.c
14 14
15 ELIX_2_SOURCES = \ 15 ELIX_2_SOURCES = \
16 scandir.c seekdir.c 16 scandir.c seekdir.c
17 17
18 ELIX_3_SOURCES = \ 18 ELIX_3_SOURCES = \
19 execl.c execle.c execlp.c execv.c \ 19 execl.c execle.c execlp.c execv.c \
20 execve.c execvp.c wordexp.c wordfree.c 20 execve.c execvp.c wordexp.c wordfree.c
21 21
22 ELIX_4_SOURCES = \ 22 ELIX_4_SOURCES = \
23 » popen.c posix_spawn.c 23 » popen.c posix_spawn.c posix_spawnaddr.c posix_spawn_file_actions.c
24 24
25 if ELIX_LEVEL_1 25 if ELIX_LEVEL_1
26 ELIX_SOURCES = 26 ELIX_SOURCES =
27 else 27 else
28 if ELIX_LEVEL_2 28 if ELIX_LEVEL_2
29 ELIX_SOURCES = $(ELIX_2_SOURCES) 29 ELIX_SOURCES = $(ELIX_2_SOURCES)
30 else 30 else
31 if ELIX_LEVEL_3 31 if ELIX_LEVEL_3
32 ELIX_SOURCES = $(ELIX_2_SOURCES) $(ELIX_3_SOURCES) 32 ELIX_SOURCES = $(ELIX_2_SOURCES) $(ELIX_3_SOURCES)
33 else 33 else
(...skipping 29 matching lines...) Expand all
63 touch stmp-def 63 touch stmp-def
64 64
65 TARGETDOC = ../tmp.texi 65 TARGETDOC = ../tmp.texi
66 66
67 doc: $(CHEWOUT_FILES) 67 doc: $(CHEWOUT_FILES)
68 cat $(srcdir)/posix.tex >> $(TARGETDOC) 68 cat $(srcdir)/posix.tex >> $(TARGETDOC)
69 69
70 AM_CFLAGS = -D_GNU_SOURCE 70 AM_CFLAGS = -D_GNU_SOURCE
71 71
72 CLEANFILES = $(CHEWOUT_FILES) *.ref 72 CLEANFILES = $(CHEWOUT_FILES) *.ref
OLDNEW
« no previous file with comments | « newlib/libc/include/spawn.h ('k') | newlib/libc/posix/Makefile.in » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698