# Makefile : makefile for the ArtLPC test programs
# Copyright (c) 2005-2007 Garth Zeglin

# This file is part of ArtLPC. 

# ArtLPC is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.

# ArtLPC is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
# General Public License for more details.

# You should have received a copy of the GNU General Public License
# along with Foobar; if not, write to the Free Software Foundation,
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA

# ---------------------------------------------------------------------
# compile test programs for all targets

TARGETS = Makefile-OP03 

# For the time being, these are not enabled by default just to minimize 
# confusion for first time users, but these allow compiling test programs
# on the host computer:
#   Makefile-POSIX
#   Makefile-OSX

default:
	for x in ${TARGETS} ; do make -f $$x; done

clean:
	for x in ${TARGETS} ; do make clean -f $$x; done

depend:
	for x in ${TARGETS} ; do make depend -f $$x; done

really-clean: clean depend default
