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.
|
|
|
# ***************************************************** -*- Makefile -*-
|
|
|
|
#
|
|
|
|
# AUTHOR(S): Andreas Huggel (ahu)
|
|
|
|
#
|
|
|
|
# RCS information
|
|
|
|
# $Name: $
|
|
|
|
# $Revision: 1.6 $
|
|
|
|
#
|
|
|
|
# Description:
|
|
|
|
# This makefile mainly forwards to makefiles in subdirectories.
|
|
|
|
#
|
|
|
|
# Restrictions:
|
|
|
|
# Requires GNU make.
|
|
|
|
#
|
|
|
|
|
|
|
|
.PHONY: all clean doc
|
|
|
|
|
|
|
|
all %:
|
|
|
|
cd src && $(MAKE) $(MAKECMDGOALS)
|
|
|
|
|
|
|
|
doc:
|
|
|
|
cd doc && $(MAKE) $(MAKECMDGOALS)
|
|
|
|
|
|
|
|
clean:
|
|
|
|
cd src && $(MAKE) $(MAKECMDGOALS)
|
|
|
|
# cd doc && $(MAKE) $(MAKECMDGOALS)
|
|
|
|
rm -f config.h config.mk config.log config.status
|
|
|
|
rm -f configure.scan autoscan.log
|
|
|
|
rm -rf autom4te.cache/
|
|
|
|
rm -f *~ *.bak *#
|