Blame src/test_grabbag/Makefile.lite

Packit 8f7830
#  test_grabbag - Simple testers for the grabbag library
Packit 8f7830
#  Copyright (C) 2002-2009  Josh Coalson
Packit 8f7830
#  Copyright (C) 2011-2016  Xiph.Org Foundation
Packit 8f7830
#
Packit 8f7830
#  This program is free software; you can redistribute it and/or
Packit 8f7830
#  modify it under the terms of the GNU General Public License
Packit 8f7830
#  as published by the Free Software Foundation; either version 2
Packit 8f7830
#  of the License, or (at your option) any later version.
Packit 8f7830
#
Packit 8f7830
#  This program is distributed in the hope that it will be useful,
Packit 8f7830
#  but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit 8f7830
#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
Packit 8f7830
#  GNU General Public License for more details.
Packit 8f7830
#
Packit 8f7830
#  You should have received a copy of the GNU General Public License along
Packit 8f7830
#  with this program; if not, write to the Free Software Foundation, Inc.,
Packit 8f7830
#  51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
Packit 8f7830
Packit 8f7830
.PHONY: cuesheet picture
Packit 8f7830
all: cuesheet picture
Packit 8f7830
Packit 8f7830
DEFAULT_CONFIG = release
Packit 8f7830
Packit 8f7830
CONFIG = $(DEFAULT_CONFIG)
Packit 8f7830
Packit 8f7830
debug   : CONFIG = debug
Packit 8f7830
valgrind: CONFIG = valgrind
Packit 8f7830
release : CONFIG = release
Packit 8f7830
Packit 8f7830
debug   : all
Packit 8f7830
valgrind: all
Packit 8f7830
release : all
Packit 8f7830
Packit 8f7830
cuesheet:
Packit 8f7830
	(cd $@ ; $(MAKE) -f Makefile.lite $(CONFIG))
Packit 8f7830
picture:
Packit 8f7830
	(cd $@ ; $(MAKE) -f Makefile.lite $(CONFIG))
Packit 8f7830
Packit 8f7830
clean:
Packit 8f7830
	-(cd cuesheet ; $(MAKE) -f Makefile.lite clean)
Packit 8f7830
	-(cd picture ; $(MAKE) -f Makefile.lite clean)