X-Git-Url: http://mj.ucw.cz/gitweb/?a=blobdiff_plain;f=free%2Flibs%2Fexamples%2Fexternal-ucw-build%2FMakefile;h=db3a8c7c481f016a74bcc75630ee74d027eca1ea;hb=daa0dfe6a351a3fada31f173ce0c0523bacb2740;hp=db4d1243343db8885a6cd5aba13757ed5e2ebf9e;hpb=0c6a4ebe19047ddfda7c2afad0d549fbee0e6d77;p=libucw.git diff --git a/free/libs/examples/external-ucw-build/Makefile b/free/libs/examples/external-ucw-build/Makefile index db4d1243..db3a8c7c 100644 --- a/free/libs/examples/external-ucw-build/Makefile +++ b/free/libs/examples/external-ucw-build/Makefile @@ -11,12 +11,12 @@ s=. obj/config.mk: @echo "You need to run configure first." && false -# Do not show strange errors if the BUILDSYS_PATH is not set +# Do not show strange errors if the BUILDSYS is not set # (means noone yet called configure and it reported above) -ifdef BUILDSYS_PATH +ifdef BUILDSYS # We will use the libucw build system -include $(BUILDSYS_PATH)/Maketop +include $(BUILDSYS)/Maketop # Add the detected flags to all the global flags CFLAGS+=$(LIBUCW_CFLAGS) @@ -29,6 +29,6 @@ PROGS+=$(o)/test $(o)/test: $(o)/test.o $(LIBUCW) # And finally the default rules of the build system -include $(BUILDSYS_PATH)/Makebottom +include $(BUILDSYS)/Makebottom endif