MySQL realated stuff documented.
[mediadatabase.git] / GNUmakefile
blobf6d680a23f95d424483be8255d93c1a26eb9b9bb
1 ##############################################################################
3 # $Id: GNUmakefile,v 1.4 2005/03/05 21:40:09 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 fuse
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 full_clean:
35 @echo "Cleaning (+ dependency fles) ..."
36 @$(MAKE) --no-print-directory subdirs TARGET=full_clean
37 @echo "Cleaning (+ dependency fles) done."
39 # Inter-subdir dependencies
40 cui: libdb libfrontend
41 gtk: libdb libfrontend
42 fuse: libdb libfrontend
43 libfrontend: libdb
45 ##############################################################################
47 # Modifications log:
49 # !!! WARNING !!! Following lines are automatically updated by the CVS system.
51 # $Log: GNUmakefile,v $
52 # Revision 1.4 2005/03/05 21:40:09 nedko
53 # new frontend - FUSE
55 # Revision 1.3 2004/06/20 12:24:21 nedko
56 # Use dependency files.
57 # Use common tool variables.
59 # Revision 1.2 2004/05/16 19:06:39 nedko
60 # build libfrontend and gtk frontend.
62 # Revision 1.1 2004/05/02 13:25:03 nedko
63 # Use makefile to build mediadatabase.
65 ##############################################################################