File: Makefile

package info (click to toggle)
magma 2.9.0%2Bds-3
  • links: PTS, VCS
  • area: contrib
  • in suites: forky, sid
  • size: 83,556 kB
  • sloc: cpp: 709,115; fortran: 121,916; ansic: 32,343; python: 25,603; f90: 15,208; makefile: 945; xml: 253; csh: 232; sh: 203; perl: 104
file content (24 lines) | stat: -rw-r--r-- 977 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
21
22
23
24
all:
	cd .. && $(MAKE) generate
	doxygen Doxyfile
	@echo "================================================================================"
	./summarize_errors.pl output_err

# Doxyfile-fast explicitly lists files in the repo,
# excluding all the precision-generated files.
# It is a lot faster for checking doxygen warnings,
# but of course generates only a subset of the documentation.
# See output_err_fast file for Doxygen warnings.
fast:
	doxygen Doxyfile-fast
	@echo "================================================================================"
	./summarize_errors.pl output_err_fast

# Doxyfile-test is for local testing of specific files.
# Create Doxyfile-test as a local copy of Doxyfile-fast with INPUT as whatever
# files that you want to test, but do not add it to the SVN.
test:
	cd .. && $(MAKE) generate
	doxygen Doxyfile-test
	@echo "================================================================================"
	./summarize_errors.pl output_err_test