]> mj.ucw.cz Git - libucw.git/blob - free/libs/Makefile
fixed a memory leak
[libucw.git] / free / libs / Makefile
1 # Makefile for the stand-alone release of Sherlock libraries
2 # (c) 2007 Martin Mares <mj@ucw.cz>
3
4 # The default target
5 all: runtree libs api programs extras configs
6
7 # Include configuration
8 s=.
9 -include obj/config.mk
10 obj/config.mk:
11         @echo "You need to run configure first." && false
12
13 # We will use the libucw build system
14 include $(s)/build/Maketop
15
16 # Install config files
17 CONFIGS+=sherlock local
18
19 # Set up names of common libraries (to avoid forward references in rules)
20 LIBLANG=$(o)/lang/liblang.pc
21 LIBCHARSET=$(o)/charset/libcharset.pc
22 LIBIMAGES=$(o)/images/libimages.pc
23 LIBSH=$(o)/sherlock/libsh.pc
24
25 # Include makefiles of libraries we wish to use
26 include $(s)/lib/Makefile
27 include $(s)/charset/Makefile
28 include $(s)/lang/Makefile
29 include $(s)/images/Makefile
30 include $(s)/sherlock/Makefile
31
32 libs: $(LIBUCW) $(LIBSH) $(LIBIMAGES) $(LIBCHARSET) $(LIBLANG)
33
34 # And finally the default rules of the build system
35 include $(s)/build/Makebottom