]> git.samba.org - metze/wireshark/wip.git/blob - wsutil/Makefile.common
Use FreeRADIUS's warning pragma controls to suppress Apple complaints.
[metze/wireshark/wip.git] / wsutil / Makefile.common
1 # Makefile.common
2 #     Contains the stuff from Makefile.am and Makefile.nmake that is
3 #     a) common to both files and
4 #     b) portable between both files
5 #
6 # Wireshark - Network traffic analyzer
7 # By Gerald Combs <gerald@wireshark.org>
8 # Copyright 1998 Gerald Combs
9 #
10 # This program is free software; you can redistribute it and/or
11 # modify it under the terms of the GNU General Public License
12 # as published by the Free Software Foundation; either version 2
13 # of the License, or (at your option) any later version.
14 #
15 # This program is distributed in the hope that it will be useful,
16 # but WITHOUT ANY WARRANTY; without even the implied warranty of
17 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 # GNU General Public License for more details.
19 #
20 # You should have received a copy of the GNU General Public License
21 # along with this program; if not, write to the Free Software
22 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
23
24 # C source files that are part of the libwsutil source; this includes only
25 # .c files, not YACC or Lex or... files (as Makefile.nmake maps this list
26 # into a list of object files by replacing ".c" with ".obj") or files
27 # generated from YACC or Lex files (as Automake doesn't want them in
28 # _SOURCES variables).
29 LIBWSUTIL_SRC =         \
30         adler32.c       \
31         aes.c           \
32         airpdcap_wep.c  \
33         base64.c        \
34         bitswap.c       \
35         buffer.c        \
36         cfutils.c       \
37         clopts_common.c \
38         cmdarg_err.c    \
39         compiler_info.c \
40         copyright_info.c \
41         cpu_info.c      \
42         crash_info.c    \
43         crc6.c          \
44         crc7.c          \
45         crc8.c          \
46         crc10.c         \
47         crc11.c         \
48         crc16.c         \
49         crc16-plain.c   \
50         crc32.c         \
51         des.c           \
52         eax.c           \
53         filesystem.c    \
54         g711.c          \
55         glib_version_info.c \
56         md4.c           \
57         md5.c           \
58         mem_info.c      \
59         mpeg-audio.c    \
60         nstime.c        \
61         os_version_info.c \
62         plugins.c       \
63         privileges.c    \
64         sha1.c          \
65         sober128.c      \
66         strnatcmp.c     \
67         str_util.c      \
68         rc4.c           \
69         report_err.c    \
70         tempfile.c      \
71         time_util.c     \
72         type_util.c     \
73         ws_mempbrk.c    \
74         u3.c            \
75         unicode-utils.c \
76         ws_version_info.c
77
78 # Header files that don't declare replacement functions for functions
79 # present in the APIs/ABIs of some, but not all, targets.
80 libwsutil_nonrepl_INCLUDES = \
81         adler32.h       \
82         aes.h           \
83         base64.h        \
84         bits_ctz.h      \
85         bits_count_ones.h       \
86         bitswap.h       \
87         buffer.h        \
88         cfutils.h       \
89         clopts_common.h \
90         cmdarg_err.h    \
91         compiler_info.h \
92         copyright_info.h \
93         cpu_info.h      \
94         crash_info.h    \
95         crc6.h          \
96         crc7.h          \
97         crc8.h          \
98         crc10.h         \
99         crc11.h         \
100         crc16.h         \
101         crc16-plain.h   \
102         crc32.h         \
103         des.h           \
104         eax.h           \
105         filesystem.h    \
106         g711.h          \
107         glib_version_info.h \
108         md4.h           \
109         md5.h           \
110         mem_info.h      \
111         mpeg-audio.h    \
112         nstime.h        \
113         os_version_info.h \
114         plugins.h       \
115         privileges.h    \
116         sha1.h          \
117         sign_ext.h      \
118         sober128.h      \
119         strnatcmp.h     \
120         str_util.h      \
121         pint.h          \
122         rc4.h           \
123         report_err.h    \
124         tempfile.h      \
125         time_util.h     \
126         type_util.h     \
127         u3.h            \
128         unicode-utils.h \
129         ws_cpuid.h      \
130         ws_diag_control.h \
131         ws_mempbrk.h    \
132         ws_version_info.h
133
134 # Header files that are not generated from other files
135 LIBWSUTIL_INCLUDES =    \
136         $(libwsutil_nonrepl_INCLUDES)   \
137         strncasecmp.h
138
139 #
140 # Editor modelines  -  http://www.wireshark.org/tools/modelines.html
141 #
142 # Local variables:
143 # c-basic-offset: 8
144 # tab-width: 8
145 # indent-tabs-mode: t
146 # End:
147 #
148 # vi: set shiftwidth=8 tabstop=8 noexpandtab:
149 # :indentSize=8:tabSize=8:noTabs=false:
150 #