File: makefile

package info (click to toggle)
filtergen 0.12.8-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,924 kB
  • sloc: sh: 5,485; ansic: 4,268; yacc: 692; lex: 362; makefile: 165
file content (25 lines) | stat: -rw-r--r-- 419 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
include Makefile

ifeq ($(ACLOCAL),)

all: Makefile
	$(MAKE) -f Makefile $(MAKECMDGOALS)

.FORCED: all

Makefile: configure
	./configure --enable-maintainer-mode --enable-gcov

configure: Makefile.in configure.ac config.h.in
	autoconf

Makefile.in: configure.ac Makefile.am config.h.in
	automake --foreign --add-missing --copy

config.h.in: configure.ac aclocal.m4
	autoheader

aclocal.m4: configure.ac
	aclocal

endif