Login  Register

Re: Developing Slackware installation procedure

Posted by maqifrnswa on Jun 28, 2011; 2:09pm
URL: https://forum.librecad.org/Developing-Slackware-installation-procedure-tp4530576p4531893.html

On Mon, Jun 27, 2011 at 11:13 PM, catkin [via LibreCAD]
<[hidden email]> wrote:
>
> Hello
>
> I would like to develop a LibreCAD installation procedure for Slackware (Slackware64 13.1) but have encountered a qmake problem and do not know enough about qmake to debug it.
>
> Using the Ubuntu 10.10 installation procedure as a basis, I downloaded the git, ran qmake (which generated Makefile and two directories) and ran qmake Makefile which generated the following error:
>
> Makefile:1079: Parse Error ('first: all')

I can repeat your error if I do the following:
$ qmake
$ qmake Makefile

which is incorrect

you should be doing (as Ries pointed out above)
$ qmake
$ make


When I use "make" instead of "qmake Makefile", the program builds.

Hopefully that works for you too