Hi Rainer,
This is Makefile from netman:
---------------------------------------------------
all: backend netman
backend:
make -C backend_src
cp backend_src/bin/backend .
netman: netman.lpr
lazbuild -B netman.lpr | awk '/./{print $$0}'
clean:
make -C backend_src clean
rm -f lib/*/*.*
rm -f backend netman
.PHONY: all clean
---------------------------------
Please tell me what I should change.
Edward
On 07/12/2015, Rainer Weikusat <rainerweikusat@???> wrote:
> Edward Bartolo <edbarx@???> writes:
>> QUOTE:
>>
>> "NB: This also fixes the silly autoWirelessScanPlus_RN omission (by
>> including all object files). But this is positively the last time I've
>> either
>>
>> - created backend_src/obj by hand
>> - created backend_src/bin by hand
>> - added automated_scanner.o by hand
>> - added the required library by hand
>>
>> You're free to publish broken stuff on the web and refuse to fix it and
>> other people are as free to ignore the project if even the most simple
>> bugs never get fixed."
>>
>> UNQUOTE
>>
>>
>> Please, let us be civilised.
>>
>> What is the problem?
>
> The technical problem here is that it's not possible to compile the
> backend code from the cloned git repository because the Makefile is
> broken (doesn't list all object code files), the linker command is
> broken (missing -lm) and Makefile wants to use directories which don't
> exist.
>
> This could be remedied by
>
> - applying patches sent to you
> - fixing the issue in some other way
>
> AFAICT, the state of the git repository has been unchanged in this
> respect for months.
> _______________________________________________
> Dng mailing list
> Dng@???
> https://mailinglists.dyne.org/cgi-bin/mailman/listinfo/dng
>