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.
37 lines
841 B
Makefile
37 lines
841 B
Makefile
# ************************************************************* -*- Makefile -*-
|
|
|
|
# Default make target
|
|
all: test
|
|
|
|
top_srcdir = ..
|
|
|
|
# Initialisations
|
|
SHELL = /bin/sh
|
|
|
|
.SUFFIXES:
|
|
|
|
# ******************************************************************************
|
|
# Targets
|
|
.PHONY: all test clean distclean maintainer-clean
|
|
|
|
# Add test drivers to this list
|
|
TESTS = addmoddel.sh exifdata-test.sh exiv2-test.sh ifd-test.sh imagetest.sh \
|
|
iotest.sh iptctest.sh makernote-test.sh modify-test.sh write-test.sh \
|
|
write2-test.sh
|
|
|
|
test:
|
|
@list='$(TESTS)'; for p in $$list; do \
|
|
echo Running $$p ...; \
|
|
./$$p; \
|
|
done
|
|
|
|
clean:
|
|
rm -rf $(top_srcdir)/test/tmp/*
|
|
|
|
distclean: clean
|
|
$(RM) *~ *.bak *#
|
|
|
|
# This command is intended for maintainers to use; it deletes files
|
|
# that may need special tools to rebuild.
|
|
maintainer-clean: distclean
|