File: Makefile.in

package info (click to toggle)
psicode 3.4.0-5
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 46,400 kB
  • ctags: 18,552
  • sloc: cpp: 291,425; ansic: 12,788; fortran: 10,489; perl: 3,206; sh: 2,702; makefile: 2,207; ruby: 2,178; yacc: 110; lex: 53
file content (34 lines) | stat: -rw-r--r-- 568 bytes parent folder | download | duplicates (3)
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

srcdir = @srcdir@

include ../MakeVars

DOXYDIR = $(DESTDIR)$(htmldir)/doxygen
DOXYCFG = doxygen.cfg

all:: html

.PHONY: html
html: $(DOXYCFG)
	$(DOXYGEN) $<

realclean:: clean
	$(RM) -r html latex man

clean::
	$(RM) -r *~

install:: install_html

.PHONY: install_html
install_html::
	$(MKDIRS) $(DOXYDIR)
	$(INSTALL_DATA) html/* $(DOXYDIR)

include ../MakeRules

# how to make the doxygen config file
$(DOXYCFG): $(DOXYCFG).in $(top_objdir)/config.status
	cd $(top_objdir) && CONFIG_FILES=doc/`basename $(srcdir)`/$(DOXYCFG)  ./config.status

vpath %.in $(srcdir)