File: makefile

package info (click to toggle)
filtergen 0.12.8-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, buster, stretch
  • size: 2,068 kB
  • ctags: 1,105
  • sloc: sh: 5,459; ansic: 4,268; yacc: 692; lex: 362; makefile: 167
file content (25 lines) | stat: -rw-r--r-- 405 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

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