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.
33 lines
707 B
Plaintext
33 lines
707 B
Plaintext
21 years ago
|
# ***************************************************** -*- Makefile -*-
|
||
|
#
|
||
|
# File: Makefile
|
||
|
# Version: $Rev$
|
||
|
# Author(s): Andreas Huggel (ahu) <ahuggel@gmx.net>
|
||
|
# History: 26-Feb-05, ahu: created
|
||
|
#
|
||
|
# Description:
|
||
|
# Simple makefile to automate config tasks
|
||
|
#
|
||
|
# Restrictions:
|
||
|
# Requires GNU make.
|
||
|
#
|
||
|
|
||
|
# Default make target
|
||
|
all: config
|
||
|
|
||
|
.PHONY: all config mostlyclean clean distclean maintainer-clean
|
||
|
|
||
|
config:
|
||
|
autoconf -o ../configure
|
||
|
|
||
|
mostlyclean clean:
|
||
|
rm -f configure.scan autoscan.log
|
||
|
rm -rf autom4te.cache/
|
||
|
rm -f *~ *.bak *#
|
||
|
|
||
|
distclean: clean
|
||
19 years ago
|
rm -f config.h ../src/exv_conf.h config.mk exiv2.pc
|
||
21 years ago
|
|
||
|
# This removes almost everything, including the configure script!
|
||
|
maintainer-clean: distclean
|