Update NTK submodule.
[nondaw.git] / Makefile
blob2ac53388f8dfa801e354445eff7f1b7d9d5828d3
2 ###############################################################################
3 # Copyright (C) 2008 Jonathan Moore Liles #
4 # #
5 # This program is free software; you can redistribute it and/or modify it #
6 # under the terms of the GNU General Public License as published by the #
7 # Free Software Foundation; either version 2 of the License, or (at your #
8 # option) any later version. #
9 # #
10 # This program is distributed in the hope that it will be useful, but WITHOUT #
11 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or #
12 # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for #
13 # more details. #
14 # #
15 # You should have received a copy of the GNU General Public License along #
16 # with This program; see the file COPYING. If not,write to the Free Software #
17 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. #
18 ###############################################################################
20 SUBDIRS=lib nonlib FL timeline mixer session-manager sequencer
22 all: lib/ntk/configure lib/.built .config
23 @ for dir in $(SUBDIRS); do echo Building $$dir; $(MAKE) -s -C $$dir; done
25 lib/ntk/configure:
26 @ git submodule update --init
28 lib/.built:
29 @ make -C lib
31 .config: configure
32 ./configure
34 config: configure
35 ./configure
37 clean:
38 @ for dir in $(SUBDIRS); do $(MAKE) -s -C $$dir clean; done
40 install:
41 @ for dir in $(SUBDIRS); do $(MAKE) -s -C $$dir install; done