X-Git-Url: http://mj.ucw.cz/gitweb/?a=blobdiff_plain;f=free%2Flibs%2Fexamples%2Finternal%2FMakefile;h=1b970e50fa8e040c1776e077a9b58e8799c92c87;hb=0c6a4ebe19047ddfda7c2afad0d549fbee0e6d77;hp=628fe1487f5dba888651f644e069fcf0ce8b4a89;hpb=d60ede19ab84382101d313e3185b1a0ef6714088;p=libucw.git diff --git a/free/libs/examples/internal/Makefile b/free/libs/examples/internal/Makefile index 628fe148..1b970e50 100644 --- a/free/libs/examples/internal/Makefile +++ b/free/libs/examples/internal/Makefile @@ -10,8 +10,10 @@ s=. obj/config.mk: @echo "You need to run configure first." && false +BUILDSYS_PATH=$(s)/build + # We will use the libucw build system -include $(s)/build/Maketop +include $(BUILDSYS_PATH)/Maketop # Set up names of common libraries (to avoid forward references in rules) LIBLANG=$(o)/lang/liblang.pc @@ -19,7 +21,7 @@ LIBCHARSET=$(o)/charset/libcharset.pc LIBIMAGES=$(o)/images/libimages.pc # Include makefiles of libraries we wish to use -include $(s)/lib/Makefile +include $(s)/ucw/Makefile include $(s)/charset/Makefile include $(s)/lang/Makefile include $(s)/images/Makefile @@ -32,4 +34,4 @@ $(o)/test: $(o)/test.o $(LIBUCW) $(LIBLANG) $(LIBCHARSET) $(LIBIMAGES) TESTING_DEPS=$(LIBUCW) # And finally the default rules of the build system -include $(s)/build/Makebottom +include $(BUILDSYS_PATH)/Makebottom