Use libfrontend
[mediadatabase.git] / GNUmakefile
blob41e65294a8ca35c0178f17c3b498c0a8dd6976d1
1 ##############################################################################
3 # $Id: GNUmakefile,v 1.2 2004/05/16 19:06:39 nedko Exp $
5 # DESCRIPTION:
6 # Top level Makefile for mediadatabase
8 # AUTHOR:
9 # Nedko Arnaudov <nedko@users.sourceforge.net>
11 # LICENSE:
12 # GNU GENERAL PUBLIC LICENSE version 2
14 ##############################################################################
16 SUBDIRS = libdb cui gtk libfrontend
18 .PHONY : default subdirs clean $(SUBDIRS)
20 default: subdirs
22 subdirs: $(SUBDIRS)
24 $(SUBDIRS):
25 @echo "------ Entering subdirectory $@"
26 @$(MAKE) --no-print-directory -C $@ $(TARGET)
27 @echo "------ Leaving subdirectory $@"
29 clean:
30 @echo "Cleaning ..."
31 @$(MAKE) --no-print-directory subdirs TARGET=clean
32 @echo "Cleaning done."
34 # Inter-subdir dependencies
35 cui: libdb libfrontend
36 gtk: libdb libfrontend
37 libfrontend: libdb
39 ##############################################################################
41 # Modifications log:
43 # !!! WARNING !!! Following lines are automatically updated by the CVS system.
45 # $Log: GNUmakefile,v $
46 # Revision 1.2 2004/05/16 19:06:39 nedko
47 # build libfrontend and gtk frontend.
49 # Revision 1.1 2004/05/02 13:25:03 nedko
50 # Use makefile to build mediadatabase.
52 ##############################################################################