File: Makefile.in

package info (click to toggle)
xprobe 0.3-1.1
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd, lenny, squeeze, wheezy
  • size: 2,424 kB
  • ctags: 2,017
  • sloc: cpp: 12,317; sh: 2,858; makefile: 727; ansic: 7
file content (83 lines) | stat: -rwxr-xr-x 2,548 bytes parent folder | download | duplicates (6)
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83

# $Id: Makefile.in,v 1.4 2003/04/22 19:59:54 fygrave Exp $
#
# Copyright (C) 2001 Fyodor Yarochkin <fygrave@tigerteam.net>,
#                    Ofir Arkin       <ofir@sys-security.com>
#
# 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.

FILES=AUTHORS Makefile.in README acconfig.h cfg-scripts configure \
configure.in docs
SOURCES=@SOURCES@
HEADERS=@HEADERS@
SRCFILES= Makefile.in config.h.in defines.h.in @SOURCES@ @HEADERS@ \
xptests
INSTALL=@INSTALL@
INSTALL_PROGRAM=@INSTALL_PROGRAM@
INSTALL_DATA=@INSTALL_DATA@
prefix=@prefix@
exec_prefix=@exec_prefix@
bindir=@bindir@
mandir=@mandir@
sysconfdir=@sysconfdir@
CFGDIR=@CFGDIR@
PACKAGE=@PACKAGE@
VERSION=@VERSION@
TARDIR=$(PACKAGE)-$(VERSION)
TARFILE=$(TARDIR).tar
TGZFILE=$(TARFILE).gz
SIGFILE=$(TGZFILE).asc
SIG=md5sum -b


all: 
	cd libs-external/USI++/src; ${MAKE}
	cd src; ${MAKE}


clean:
	cd libs-external/USI++/src; ${MAKE} clean
	cd src; ${MAKE} clean
distclean: clean
	rm -f config.cache config.log config.status Makefile
	cd libs-external/USI++/src; ${MAKE} distclean
	cd src; ${MAKE} distclean
install: src/xprobe2
	$(INSTALL_PROGRAM) -d $(DESTDIR)/$(bindir)
	$(INSTALL_PROGRAM) -d $(DESTDIR)/$(mandir)/man1
	$(INSTALL_PROGRAM) -d $(DESTDIR)/$(sysconfdir)/xprobe2
	$(INSTALL_PROGRAM) -m 0755 src/xprobe2 $(DESTDIR)/$(bindir)
	$(INSTALL_PROGRAM) -m 0444 etc/xprobe2.conf $(DESTDIR)/$(sysconfdir)/xprobe2
	$(INSTALL_DATA) docs/xprobe2.1 $(DESTDIR)/$(mandir)/man1

configure: configure.in
	autoheader
	autoconf    

tarball: configure
	mkdir ../$(TARDIR)
	mkdir ../$(TARDIR)/src
	cp -R $(FILES) ../$(TARDIR)/
	cd src;cp -R $(SRCFILES) ../../$(TARDIR)/src
	cd ../; tar cfz $(TGZFILE) $(TARDIR)/
	cd ../;$(SIG) $(TGZFILE) > $(SIGFILE)
	rm -rf ../$(TARDIR)

arc: configure distclean
	rm -rf ../$(TARDIR)
	cp -R ../$(PACKAGE) ../$(TARDIR)
	cd ..; tar cvfz $(TGZFILE) $(TARDIR)
	cd ../;$(SIG) $(TGZFILE) > $(SIGFILE)
	rm -rf ../$(TARDIR)