exiv2/Makefile
2004-05-08 09:27:26 +00:00

27 lines
476 B
Makefile

# ***************************************************** -*- Makefile -*-
#
# AUTHOR(S): Andreas Huggel (ahu)
#
# RCS information
# $Name: $
# $Revision: 1.2 $
#
# Description:
# This makefile just forwards to src/Makefile.
#
# Restrictions:
# Requires GNU make.
#
.PHONY: all maintainer-clean doc
all %:
cd src && $(MAKE) $(MAKECMDGOALS)
doc:
cd doc && $(MAKE) $(MAKECMDGOALS)
maintainer-clean:
cd src && $(MAKE) $(MAKECMDGOALS)
cd doc && $(MAKE) $(MAKECMDGOALS)