]> mj.ucw.cz Git - libucw.git/blob - free/libs/Makefile
libsh installs
[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 # The UCW library
17 include $(s)/ucw/Makefile
18
19 # Stripped down version
20 ifndef CONFIG_UCW_ONLY
21
22 # Install config files
23 CONFIGS+=sherlock local
24
25 # Set up names of common libraries (to avoid forward references in rules)
26 LIBCHARSET=$(o)/charset/libcharset.pc
27 LIBSH=$(o)/sherlock/libsh.pc
28 LIBSHXML=$(o)/sherlock/xml/libshxml.pc
29
30 # Include makefiles of libraries we wish to use
31 include $(s)/charset/Makefile
32 include $(s)/sherlock/Makefile
33
34 ifdef CONFIG_LANG
35 LIBLANG=$(o)/lang/liblang.pc
36 include $(s)/lang/Makefile
37 endif
38
39 ifdef CONFIG_IMAGES
40 LIBIMAGES=$(o)/images/libimages.pc
41 include $(s)/images/Makefile
42 endif
43
44 endif
45
46 libs: $(LIBUCW) $(LIBSH) $(LIBIMAGES) $(LIBCHARSET) $(LIBLANG)
47
48 # And finally the default rules of the build system
49 include $(s)/build/Makebottom
50
51 ifndef CONFIG_LOCAL
52 install: $(INSTALL_TARGETS)
53 else
54 install:
55         @echo "Nothing to install, this is a local build." && false
56 endif
57 .PHONY: install