]> mj.ucw.cz Git - libucw.git/blob - free/libs/Makefile
07745f67694da652d991689643e714346b9f4be1
[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
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 # Set up names of common libraries (to avoid forward references in rules)
17 LIBLANG=$(o)/lang/liblang.pc
18 LIBCHARSET=$(o)/charset/libcharset.pc
19 LIBIMAGES=$(o)/images/libimages.pc
20 LIBSH=$(o)/sherlock/libsh.pc
21
22 # Include makefiles of libraries we wish to use
23 include $(s)/lib/Makefile
24 include $(s)/charset/Makefile
25 include $(s)/lang/Makefile
26 include $(s)/images/Makefile
27 include $(s)/sherlock/Makefile
28
29 libs: $(LIBUCW) $(LIBSH) $(LIBIMAGES) $(LIBCHARSET) $(LIBLANG)
30
31 # And finally the default rules of the build system
32 include $(s)/build/Makebottom