mingw-cross-env-list
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Mingw-cross-env-list] problems compiling qtbase with mxe


From: Volker Diels-Grabsch
Subject: Re: [Mingw-cross-env-list] problems compiling qtbase with mxe
Date: Wed, 12 Sep 2018 11:16:18 +0200
User-agent: Mutt/1.10.1 (2018-07-13)

Dear Hagen,

hagen wegner schrieb:
> Maybe you can answer the question regarding qt: the cross compile qmake 
> creates three makefiles: Makefile, Makefile.Debug and Makefile.Release.   
> Which one do I have to use?

You should only use the main Makefile!  Ignore the other ones.  Those
are executes by the main Makefile as needed.  For example, the main
Makefile specifies target rules for "make clean":

    release-clean: $(MAKEFILE).Release FORCE
            $(MAKE) -f $(MAKEFILE).Release clean
    ...
    debug-clean: $(MAKEFILE).Debug FORCE
            $(MAKE) -f $(MAKEFILE).Debug clean

The main rule for "make clean" them simply calls both:

    clean: release-clean debug-clean FORCE

In the unlikely case that you really want to clean only one of
the targets, use "make release-clean" or "make debug-clean".

In case that you really want to build just one of the targets, use
"make release" or "make debug".


Regards,
Volker

-- 
Volker Diels-Grabsch
----<<<((()))>>>----



reply via email to

[Prev in Thread] Current Thread [Next in Thread]