File: Makefile.cvs

package info (click to toggle)
yapet 0.6-3
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 6,012 kB
  • ctags: 2,913
  • sloc: ansic: 13,661; cpp: 11,384; sh: 4,814; makefile: 847; yacc: 291; sed: 16
file content (35 lines) | stat: -rw-r--r-- 890 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
# -*- makefile -*-
#
# $Id: Makefile.cvs 2684 2009-08-17 07:53:42Z rafi $

ACLOCAL=/opt/guengel/bin/aclocal
AUTOCONF=/opt/guengel/bin/autoconf
AUTOHEADER=/opt/guengel/bin/autoheader
AUTOMAKE=/opt/guengel/bin/automake
SVN2CL=/opt/guengel/bin/svn2cl.sh
SVN2CLOPTS=--group-by-day --separate-daylogs --reparagraph --authors=/opt/guengel/share/svn2cl/authors.xml -o ChangeLog

all: README ChangeLog aclocal.m4 configure config.h.in Makefile.in

README:
	touch README

ChangeLog:
#	svn update
#	$(SVN2CL) $(SVN2CLOPTS)
	echo "ChangeLog"

aclocal.m4: configure.ac
	$(ACLOCAL) -I m4

configure: configure.ac
	$(AUTOCONF)

config.h.in: configure.ac
	$(AUTOHEADER)

Makefile.in: yapet/Makefile.am ui/Makefile.am crypt/Makefile.am tests/Makefile.am doc/Makefile.am csv2yapet/Makefile.am Makefile.am configure.ac yapet/pwgen/Makefile.am
	$(AUTOMAKE) -a -c -f --gnu
	$(ACLOCAL) -I m4

.PHONY: ChangeLog