Allow readonly mode (demo)
[mediadatabase.git] / GNUmakefile
blob3389f9c477589fbb34dec17e83f5a85b3c29a139
1 ##############################################################################
3 # $Id: GNUmakefile,v 1.1 2004/05/02 13:25:03 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
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
37 ##############################################################################
39 # Modifications log:
41 # !!! WARNING !!! Following lines are automatically updated by the CVS system.
43 # $Log: GNUmakefile,v $
44 # Revision 1.1 2004/05/02 13:25:03 nedko
45 # Use makefile to build mediadatabase.
47 ##############################################################################