Changeset 4f674d7 in mainline for uspace/Makefile.common


Ignore:
Timestamp:
2017-11-08T23:50:54Z (6 years ago)
Author:
jzr <zarevucky.jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
25b853c
Parents:
7b884e55
Message:

Build uspace modules in correct dependency order (including dependencies
between libraries).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/Makefile.common

    r7b884e55 r4f674d7  
    264264        touch tag
    265265
     266# Generate inter-module make dependencies.
     267# This is needed to ensure correct build order of libraries and code depending on them.
     268deps.mk: Makefile
     269        echo > $@.new
     270        for lib in $(LIBS); do \
     271                echo "$(SELF_TARGET): lib/$$lib.build" >> $@.new; \
     272        done
     273        mv -f $@.new $@
     274
    266275%.disasm: %
    267276ifeq ($(CONFIG_LINE_DEBUG),y)
Note: See TracChangeset for help on using the changeset viewer.