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.
27 lines
476 B
Makefile
27 lines
476 B
Makefile
22 years ago
|
# ***************************************************** -*- Makefile -*-
|
||
|
#
|
||
|
# AUTHOR(S): Andreas Huggel (ahu)
|
||
|
#
|
||
|
# RCS information
|
||
|
# $Name: $
|
||
|
# $Revision: 1.1 $
|
||
|
#
|
||
|
# Description:
|
||
|
# This makefile just forwards to src/Makefile.
|
||
|
#
|
||
|
# Restrictions:
|
||
|
# Requires GNU make.
|
||
|
#
|
||
|
|
||
|
.PHONY: all maintainer-clean doc
|
||
|
|
||
|
all maintainer-clean:
|
||
|
cd src && $(MAKE) $(MAKECMDGOALS)
|
||
|
cd doc && $(MAKE) $(MAKECMDGOALS)
|
||
|
|
||
|
doc:
|
||
|
cd doc && $(MAKE) $(MAKECMDGOALS)
|
||
|
|
||
|
%:
|
||
|
cd src && $(MAKE) $(MAKECMDGOALS)
|