History log of /rkdeveloptool/Makefile.am (Results 1 – 5 of 5)
Revision Date Author Comments
# 5b7445d1 28-Nov-2017 陈豪 | Jacob Chen <jacob-chen@iotwrt.com>

Merge pull request #16 from kgoger/buildfixes

macos/openbsd fixes


# 35a265bc 10-Oct-2017 Klaus Goger <klaus.goger@theobroma-systems.com>

use rm instead of $(RM) for clean targets

OpenBSD bsdmake does not define $(RM) like GNU Make.
As it's highly unlikely that anyone will ever want to override rm or has
as system where rm is not in t

use rm instead of $(RM) for clean targets

OpenBSD bsdmake does not define $(RM) like GNU Make.
As it's highly unlikely that anyone will ever want to override rm or has
as system where rm is not in the path, let us just use the command
directly for the sake of simplicity.

Signed-off-by: Klaus Goger <klaus.goger@theobroma-systems.com>

show more ...


# c30d921c 11-Apr-2017 Kever Yang <kever.yang@rock-chips.com>

main: update to version 1.2

- add gpt command to write gpt table
- add ul command, need run db first

Signed-off-by: Liu Yi <liuyi@rock-chips.com>
Signed-off-by: Kever Yang <kever.yang@rock-chips.co

main: update to version 1.2

- add gpt command to write gpt table
- add ul command, need run db first

Signed-off-by: Liu Yi <liuyi@rock-chips.com>
Signed-off-by: Kever Yang <kever.yang@rock-chips.com>
Tested-by: Kever Yang <kever.yang@rock-chips.com>

show more ...


# 24ffa919 02-Apr-2017 Eddie Cai <eddie.cai.linux@gmail.com>

Merge pull request #5 from twoerner/contrib/twoerner/autotools-2

Contrib/twoerner/autotools 2


# 5b7562f2 20-Mar-2017 Trevor Woerner <twoerner@gmail.com>

update the build system to use autotools

The autotool system provides a high-level way of specifying what to build,
and then generates Makefile templates based on these requirements as well
as a way

update the build system to use autotools

The autotool system provides a high-level way of specifying what to build,
and then generates Makefile templates based on these requirements as well
as a way of generating Makefiles at build time based on what it finds at
build time (i.e. specifics about the system on which it is being built),
and configuration options set by the user at build time. The nice thing
about autotools is that it better encapsulates distro-specific "gotchas"
that make it hard to create a Makefile by hand which will work on a wide
range of different versions of various UNIX distributions. It also includes
built-in support for out-of-tree build (VPATH), cross-development, and DESTDIR
installs.

These generated Makefiles automatically include support for a wide
range of 'make' targets such as: make, make clean, make install, make
uninstall, make check, make distclean, make dist, make strip, make
distcheck, etc. These targets make it easier to follow the "Makefile
Conventions" of "The Release Process" from the "GNU Coding Standards"
(https://www.gnu.org/prep/standards/html_node/Makefile-Conventions.html).

Signed-off-by: Trevor Woerner <twoerner@gmail.com>

show more ...