File: Makefile.am

package info (click to toggle)
idba 1.1.3-8
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 4,412 kB
  • sloc: cpp: 36,571; sh: 1,450; makefile: 203; python: 99; perl: 8
file content (20 lines) | stat: -rw-r--r-- 453 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
AUTOMAKE_OPTIONS = foreign
SUBDIRS = lib bin test script

scan:
	script/scan.py lib > lib/Makefile.am
	script/scan.py bin > bin/Makefile.am
	echo > test/Makefile.am

scan-test:
	script/scan.py lib-test > lib/Makefile.am
	script/scan.py bin > bin/Makefile.am
	script/scan.py test > test/Makefile.am

scan-release:
	script/scan.py lib > lib/Makefile.am
	script/scan.py release > bin/Makefile.am
	echo > test/Makefile.am

unittest:
	script/run-unittest.py