File: Makefile.am

package info (click to toggle)
libgeda 20061020-3
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 3,116 kB
  • ctags: 1,519
  • sloc: ansic: 23,461; sh: 8,889; makefile: 135
file content (29 lines) | stat: -rw-r--r-- 699 bytes parent folder | download | duplicates (2)
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
EXTRA_DIST = 		libgeda-main.txt what-is-geda.html \
			what-is-libgeda.html logo.png

SUFFIXES = 		.html .tex .pdf

all: 
	@echo 'Type: make doxygen  to create doxygen documentation for libgeda'

doxygen: libgeda.dox
	@echo 'Creating doxygen documentation for libgeda...'
if BUILDDOC
	$(DOXYGEN) libgeda.dox
	-cd latex && $(MAKE)
	-cd ..
else
	@echo 'Doxygen is not installed on your system.' >> $@
	@echo 'The documentation can not be built from the sources.'     >> $@
endif

MOSTLYCLEANFILES = 	*.log *~
CLEANFILES = 		*.log *~
DISTCLEANFILES =        *.log
MAINTAINERCLEANFILES = 	*.log *~ Makefile.in configure

distclean-local:
	-rm -rf html latex

maintainer-clean-local:
	-rm -rf html latex