1#
2# projectM -- Milkdrop-esque visualisation SDK
3# Copyright (C)2003-2007 projectM Team
4#
5# This library is free software; you can redistribute it and/or
6# modify it under the terms of the GNU Lesser General Public
7# License as published by the Free Software Foundation; either
8# version 2.1 of the License, or (at your option) any later version.
9#
10# This library is distributed in the hope that it will be useful,
11# but WITHOUT ANY WARRANTY; without even the implied warranty of
12# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13# Lesser General Public License for more details.
14#
15# You should have received a copy of the GNU Lesser General Public
16# License along with this library; if not, write to the Free Software
17# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18# See 'LICENSE.txt' included within this release
19
20SUBDIRS=\
21projectM-engine \
22projectM-iTunes \
23projectM-libvisual \
24projectM-moviegen \
25projectM-screensaver \
26projectM-sdlvis \
27projectM-wxvis \
28projectM-xmms \
29macos \
30win32
31
32all: subdirs
33
34### Go through each subdir
35subdirs:
36	@for i in $(SUBDIRS); do \
37	( cd $$i ; make -f Makefile.dist ) \
38	done
39
40clean:
41	@for i in $(SUBDIRS); do \
42	( cd $$i ; make -f Makefile.dist clean ) \
43	done
44