diff options
author | Vincent Torri <vincent.torri@gmail.com> | 2012-11-01 12:56:52 +0000 |
---|---|---|
committer | Vincent Torri <vincent.torri@gmail.com> | 2012-11-01 12:56:52 +0000 |
commit | 58a9a0ad574c417bbe56043f151fc91ceba78822 (patch) | |
tree | 7578110d789dfdd63bee714449f952bf13d27a23 /src/lib/evil | |
parent | ede6b6ba795c688c6b9555c741d7b06c3fa712ef (diff) |
merge: don't use recursive subdirs. Compilation should be faster.
Please check.
note1: Only lib and bin for now, but should be extended to other stuff
note2: distcheck does not work because eo_suite is failing.
SVN revision: 78758
Diffstat (limited to 'src/lib/evil')
-rw-r--r-- | src/lib/evil/Makefile.am | 132 |
1 files changed, 0 insertions, 132 deletions
diff --git a/src/lib/evil/Makefile.am b/src/lib/evil/Makefile.am deleted file mode 100644 index 65e240c892..0000000000 --- a/src/lib/evil/Makefile.am +++ /dev/null | |||
@@ -1,132 +0,0 @@ | |||
1 | |||
2 | MAINTAINERCLEANFILES = Makefile.in | ||
3 | |||
4 | lib_LTLIBRARIES = libevil.la libdl.la | ||
5 | |||
6 | install_evilheadersdir = $(includedir)/evil-@VMAJ@ | ||
7 | dist_install_evilheaders_DATA = \ | ||
8 | Evil.h \ | ||
9 | evil_fcntl.h \ | ||
10 | evil_inet.h \ | ||
11 | evil_langinfo.h \ | ||
12 | evil_libgen.h \ | ||
13 | evil_macro.h \ | ||
14 | evil_macro_pop.h \ | ||
15 | evil_main.h \ | ||
16 | evil_print.h \ | ||
17 | evil_stdlib.h \ | ||
18 | evil_stdio.h \ | ||
19 | evil_string.h \ | ||
20 | evil_time.h \ | ||
21 | evil_unistd.h \ | ||
22 | evil_util.h | ||
23 | |||
24 | stdheadersdir = $(includedir)/evil-@VMAJ@ | ||
25 | nobase_dist_stdheaders_DATA = pwd.h sys/mman.h fnmatch.h dirent.h dlfcn.h | ||
26 | |||
27 | if HAVE_WINCE | ||
28 | |||
29 | nobase_dist_stdheaders_DATA += mingw32ce/errno.h | ||
30 | |||
31 | endif | ||
32 | |||
33 | # gdtoa | ||
34 | libevil_la_SOURCES = \ | ||
35 | gdtoa/arithchk.c \ | ||
36 | gdtoa/dmisc.c \ | ||
37 | gdtoa/dtoa.c \ | ||
38 | gdtoa/gd_arith.h \ | ||
39 | gdtoa/g_dfmt.c \ | ||
40 | gdtoa/gd_qnan.h \ | ||
41 | gdtoa/gdtoa.c \ | ||
42 | gdtoa/gdtoa_fltrnds.h \ | ||
43 | gdtoa/gdtoa.h \ | ||
44 | gdtoa/gdtoaimp.h \ | ||
45 | gdtoa/gethex.c \ | ||
46 | gdtoa/g_ffmt.c \ | ||
47 | gdtoa/g__fmt.c \ | ||
48 | gdtoa/gmisc.c \ | ||
49 | gdtoa/g_xfmt.c \ | ||
50 | gdtoa/hd_init.c \ | ||
51 | gdtoa/hexnan.c \ | ||
52 | gdtoa/misc.c \ | ||
53 | gdtoa/qnan.c \ | ||
54 | gdtoa/smisc.c \ | ||
55 | gdtoa/strtodg.c \ | ||
56 | gdtoa/strtof.c \ | ||
57 | gdtoa/strtopx.c \ | ||
58 | gdtoa/sum.c \ | ||
59 | gdtoa/ulp.c | ||
60 | |||
61 | #evil | ||
62 | libevil_la_SOURCES += \ | ||
63 | evil_dirent.c \ | ||
64 | evil_fcntl.c \ | ||
65 | evil_fnmatch.c \ | ||
66 | evil_fnmatch_list_of_states.c \ | ||
67 | evil_inet.c \ | ||
68 | evil_langinfo.c \ | ||
69 | evil_libgen.c \ | ||
70 | evil_main.c \ | ||
71 | evil_mman.c \ | ||
72 | evil_pformata.c \ | ||
73 | evil_pformatw.c \ | ||
74 | evil_printa.c \ | ||
75 | evil_printw.c \ | ||
76 | evil_pwd.c \ | ||
77 | evil_stdlib.c \ | ||
78 | evil_stdio.c \ | ||
79 | evil_string.c \ | ||
80 | evil_time.c \ | ||
81 | evil_unistd.c \ | ||
82 | evil_util.c \ | ||
83 | evil_uuid.c \ | ||
84 | evil_pformat.h \ | ||
85 | evil_private.h \ | ||
86 | evil_fnmatch_private.h | ||
87 | |||
88 | if HAVE_WINCE | ||
89 | |||
90 | libevil_la_SOURCES += evil_errno.c evil_link_ce.c | ||
91 | |||
92 | else | ||
93 | |||
94 | libevil_la_SOURCES += evil_link_xp.cpp | ||
95 | |||
96 | endif | ||
97 | |||
98 | libevil_la_CPPFLAGS = @EVIL_CPPFLAGS@ | ||
99 | libevil_la_CFLAGS = @EVIL_CFLAGS@ | ||
100 | libevil_la_CXXFLAGS = @EVIL_CXXFLAGS@ | ||
101 | libevil_la_LIBADD = @EVIL_LIBS@ | ||
102 | libevil_la_LDFLAGS = -no-undefined -Wl,--enable-auto-import -version-info @version_info@ | ||
103 | |||
104 | if HAVE_WINCE | ||
105 | |||
106 | libevil_la_LINK = $(LINK) $(libevil_la_LDFLAGS) | ||
107 | |||
108 | else | ||
109 | |||
110 | libevil_la_LINK = $(CXXLINK) $(libevil_la_LDFLAGS) | ||
111 | |||
112 | endif | ||
113 | |||
114 | libdl_la_SOURCES = dlfcn.c | ||
115 | |||
116 | libdl_la_CPPFLAGS = @EVIL_DLFCN_CPPFLAGS@ | ||
117 | libdl_la_CFLAGS = @EVIL_CFLAGS@ | ||
118 | libdl_la_LIBADD = $(top_builddir)/src/lib/evil/libevil.la @EVIL_DLFCN_LIBS@ | ||
119 | libdl_la_LDFLAGS = -no-undefined -Wl,--enable-auto-import -version-info @version_info@ | ||
120 | |||
121 | EXTRA_DIST = gdtoa/README gdtoa/README.mingw | ||
122 | |||
123 | install-data-hook: | ||
124 | rm -f $(libdir)/libevil.la $(libdir)/libdl.la | ||
125 | |||
126 | uninstall-local: | ||
127 | rm -f $(DESTDIR)$(bindir)/libevil-@VMAJ@.dll | ||
128 | rm -f $(DESTDIR)$(bindir)/libdl-@VMAJ@.dll | ||
129 | rm -f $(DESTDIR)$(libdir)/libevil.dll.a | ||
130 | rm -f $(DESTDIR)$(libdir)/libevil.a | ||
131 | rm -f $(DESTDIR)$(libdir)/libdl.dll.a | ||
132 | rm -f $(DESTDIR)$(libdir)/libdl.a | ||