#
# Makefile for cthugha-L
# documentation directory
#
# You should not need to change anything in this file.
# Set your preferences in the file configure.
#

include ../configure

all: doc

#
# Documentation
#
.PHONY: doc
doc:
	$(MAKE) -C src doc

.PHONY: dist-clean
dist-clean:
	$(MAKE) -C src dist-clean

.PHONY: clean
clean:
	$(MAKE) -C src clean


# installation
install: 
	-${INSTALL} -m 0644 cthugha.1	$(INST_MAN)
	-${INSTALL} -m 0644 cthugha.info	$(INST_INFO)
	-(grep -q "cthugha" ${INST_INFO}/dir ||					\
	  echo "* cthugha: (cthugha).   An Oscilloscope on Acid"		\
		>> ${INST_INFO}/dir)

.PHONY:



