summaryrefslogtreecommitdiff
path: root/echld/Makefile.common
diff options
context:
space:
mode:
authorLuis Ontanon <luis.ontanon@gmail.com>2013-06-22 20:26:13 +0000
committerLuis Ontanon <luis.ontanon@gmail.com>2013-06-22 20:26:13 +0000
commitf25a68221c5c4c15bfffd7e10b36791abf56f6ab (patch)
treec9666ab9f7d18860b41fe8ef75c07cb50eb0e7d3 /echld/Makefile.common
parent87eb22f4648fd5283d2c91c2046c0aa90b7b469b (diff)
downloadwireshark-f25a68221c5c4c15bfffd7e10b36791abf56f6ab.tar.gz
Not yet running but almost there with the dummy
svn path=/trunk/; revision=50114
Diffstat (limited to 'echld/Makefile.common')
-rw-r--r--echld/Makefile.common42
1 files changed, 42 insertions, 0 deletions
diff --git a/echld/Makefile.common b/echld/Makefile.common
new file mode 100644
index 0000000000..f8004280e3
--- /dev/null
+++ b/echld/Makefile.common
@@ -0,0 +1,42 @@
+# Makefile.common
+# Contains the stuff from Makefile.am and Makefile.nmake that is
+# a) common to both files and
+# b) portable between both files
+#
+# $Id: Makefile.common 47104 2013-01-15 21:54:41Z guy $
+#
+# Wireshark - Network traffic analyzer
+# By Gerald Combs <gerald@wireshark.org>
+# Copyright 1998 Gerald Combs
+#
+# This program is free software; you can redistribute it and/or
+# modify it under the terms of the GNU General Public License
+# as published by the Free Software Foundation; either version 2
+# of the License, or (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+
+# C source files that are part of the libwsutil source; this includes only
+# .c files, not YACC or Lex or... files (as Makefile.nmake maps this list
+# into a list of object files by replacing ".c" with ".obj") or files
+# generated from YACC or Lex files (as Automake doesn't want them in
+# _SOURCES variables).
+LIBECHLD_SRC = \
+ echld-util.c \
+ echld_dispatcher.c \
+ echld_child.c \
+ echld_parent.c \
+ echld_common.c
+
+# Header files that are not generated from other files
+LIBECHLD_INCLUDES = \
+ echld-int.h \
+ echld-util.h \
+ echld.h