Move the routine to get memory information to wsutil.
[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         cfutils.c       \
36         compiler_info.c \
37         copyright_info.c \
38         cpu_info.c      \
39         crash_info.c    \
40         crc6.c          \
41         crc7.c          \
42         crc8.c          \
43         crc10.c         \
44         crc11.c         \
45         crc16.c         \
46         crc16-plain.c   \
47         crc32.c         \
48         crcdrm.c        \
49         des.c           \
50         eax.c           \
51         filesystem.c    \
52         g711.c          \
53         md4.c           \
54         md5.c           \
55         mem_info.c      \
56         mpeg-audio.c    \
57         nstime.c        \
58         os_version_info.c \
59         plugins.c       \
60         privileges.c    \
61         sha1.c          \
62         sober128.c      \
63         strnatcmp.c     \
64         str_util.c      \
65         rc4.c           \
66         report_err.c    \
67         tempfile.c      \
68         time_util.c     \
69         type_util.c     \
70         ws_mempbrk.c    \
71         u3.c            \
72         unicode-utils.c
73
74 # Header files that are not generated from other files
75 LIBWSUTIL_INCLUDES =    \
76         adler32.h       \
77         aes.h           \
78         base64.h        \
79         bits_ctz.h      \
80         bits_count_ones.h       \
81         bitswap.h               \
82         cfutils.h       \
83         compiler_info.h \
84         copyright_info.h \
85         cpu_info.h      \
86         crash_info.h    \
87         crc6.h          \
88         crc7.h          \
89         crc8.h          \
90         crc10.h         \
91         crc11.h         \
92         crc16.h         \
93         crc16-plain.h   \
94         crc32.h         \
95         crcdrm.h        \
96         des.h           \
97         eax.h           \
98         filesystem.h    \
99         g711.h          \
100         md4.h           \
101         md5.h           \
102         mem_info.h      \
103         mpeg-audio.h    \
104         nstime.h        \
105         os_version_info.h \
106         plugins.h       \
107         privileges.h    \
108         sha1.h          \
109         sign_ext.h      \
110         sober128.h      \
111         strnatcmp.h     \
112         str_util.h      \
113         pint.h          \
114         rc4.h           \
115         report_err.h    \
116         tempfile.h      \
117         time_util.h     \
118         type_util.h     \
119         u3.h            \
120         unicode-utils.h \
121         ws_cpuid.h      \
122         ws_mempbrk.h
123
124
125 #
126 # Editor modelines  -  http://www.wireshark.org/tools/modelines.html
127 #
128 # Local variables:
129 # c-basic-offset: 8
130 # tab-width: 8
131 # indent-tabs-mode: t
132 # End:
133 #
134 # vi: set shiftwidth=8 tabstop=8 noexpandtab:
135 # :indentSize=8:tabSize=8:noTabs=false:
136 #