You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

45 lines
1.1 KiB
Makefile

# ***************************************************** -*- Makefile -*-
22 years ago
#
# File: Makefile
# Version: $Rev$
# Author(s): Andreas Huggel (ahu) <ahuggel@gmx.net>
# History: 10-Dec-03, ahu: created
22 years ago
#
# Description:
# Simple Makefile to build the doxygen documentation
22 years ago
#
# Restrictions:
# Requires GNU make.
#
22 years ago
# Default make target
all: doc
# Include system configuration
top_srcdir = ..
include $(top_srcdir)/config/config.mk
22 years ago
# **********************************************************************
# ======================================================================
# **********************************************************************
# Initialisations
SHELL = /bin/sh
.SUFFIXES:
# **********************************************************************
# Targets
.PHONY: all doc mostlyclean clean distclean maintainer-clean
22 years ago
doc:
doxygen $(top_srcdir)/config/Doxyfile
mostlyclean clean distclean:
$(RM) *~ *.bak *#
22 years ago
# This command is intended for maintainers to use; it deletes files
# that may need special tools to rebuild.
maintainer-clean: distclean
22 years ago
rm -rf $(top_srcdir)/doc/html/*