Changeset 2660ee3 in mainline for Makefile


Ignore:
Timestamp:
2018-01-31T17:47:53Z (7 years ago)
Author:
GitHub <noreply@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
a912aff, b500939e, ea42e44
Parents:
14d789c
git-author:
Jiří Zárevúcky <zarevucky.jiri@…> (2018-01-31 17:47:53)
git-committer:
GitHub <noreply@…> (2018-01-31 17:47:53)
Message:

Generate files that a third party can use to build software for HelenOS (#15)

Generate files that a third party can use to build software for HelenOS
without necessarily knowing anything about the build system.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • Makefile

    r14d789c r2660ee3  
    4848ERRNO_INPUT = abi/include/abi/errno.in
    4949
    50 .PHONY: all precheck cscope cscope_parts autotool config_auto config_default config distclean clean check releasefile release common boot kernel uspace
     50.PHONY: all precheck cscope cscope_parts autotool config_auto config_default config distclean clean check releasefile release common boot kernel uspace export-posix
    5151
    5252all: kernel uspace
     
    6060uspace: common
    6161        $(MAKE) -r -C uspace PRECHECK=$(PRECHECK)
     62
     63export-posix: common
     64ifndef EXPORT_DIR
     65        @echo ERROR: Variable EXPORT_DIR is not defined. && false
     66else
     67        $(MAKE) -r -C uspace export EXPORT_DIR=$(abspath $(EXPORT_DIR))
     68endif
    6269
    6370precheck: clean
Note: See TracChangeset for help on using the changeset viewer.