File: Makefile.am

package info (click to toggle)
vbindiff 3.0-beta4-1
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd, stretch
  • size: 588 kB
  • ctags: 370
  • sloc: cpp: 2,296; sh: 787; perl: 108; makefile: 96; lisp: 13
file content (65 lines) | stat: -rw-r--r-- 1,933 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
## Process this file with automake to produce Makefile.in
#---------------------------------------------------------------------
# $Id: Makefile.am 4759 2008-07-26 03:19:24Z cjm $
# Copyright 2008 Christopher J. Madsen
#
# Automake makefile for VBinDiff
#
# 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, see <http://www.gnu.org/licenses/>.
#--------------------------------------------------------------------

bin_PROGRAMS = vbindiff
dist_man_MANS = vbindiff.1
vbindiff_SOURCES = vbindiff.cpp tables.h curses/ConWin.cpp curses/ConWin.hpp  \
		   curses/FileIO.hpp GetOpt/GetOpt.cpp GetOpt/GetOpt.hpp
EXTRA_DIST = \
	cjm-style.el		\
	putty.src		\
	README.PuTTY		\
	tools/vbindiff.pod.tt	\
	tools/NEWS.tt		\
	tools/ReadMe.tt		\
	tools/genfile.pl	\
	tools/getversion.pm	\
	tools/maketxt.pl	\
	tools/version.h.tt	\
	tools/zipdist.pl	\
	win32/ConWin.cpp	\
	win32/ConWin.hpp	\
	win32/FileIO.hpp	\
	win32/StdAfx.cpp	\
	win32/config.h		\
	win32/vbindiff.dsp	\
	win32/vbindiff.dsw	\
	win32/vbindiff.rc	\
	win32/version.h

AM_CPPFLAGS = -I$(srcdir)/curses

AM_CFLAGS = -Wall -D_FILE_OFFSET_BITS=64
AM_CXXFLAGS = $(AM_CFLAGS)

GENFILE = perl tools/genfile.pl

README : tools/ReadMe.tt configure.ac
	$(GENFILE) $<

NEWS : tools/NEWS.tt configure.ac
	$(GENFILE) $<

vbindiff.1 : tools/vbindiff.pod.tt configure.ac
	$(GENFILE) $<

win32/version.h : tools/version.h.tt configure.ac
	$(GENFILE) $<