Changeset 0c2d9bb in mainline for uspace/Makefile.common


Ignore:
Timestamp:
2013-12-25T22:54:29Z (10 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
b51cf2c
Parents:
f7a33de (diff), ac36aed (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

merge mainline changes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/Makefile.common

    rf7a33de r0c2d9bb  
    4545#
    4646#   POSIX_COMPAT       set to 'y' to use POSIX compatibility layer
     47#   NEEDS_MATH         set to 'y' to add implementation of mathematical functions
    4748#
    4849# Optionally, for a binary:
     
    109110LIBSOFTFLOAT_PREFIX = $(LIB_PREFIX)/softfloat
    110111LIBSOFTINT_PREFIX = $(LIB_PREFIX)/softint
     112LIBMATH_PREFIX = $(LIB_PREFIX)/math
    111113
    112114LIBPOSIX_PREFIX = $(LIB_PREFIX)/posix
     
    140142
    141143LIBBITHENGE_PREFIX = $(LIB_PREFIX)/bithenge
     144
     145LIBHTTP_PREFIX = $(LIB_PREFIX)/http
     146LIBURI_PREFIX = $(LIB_PREFIX)/uri
     147
     148LIBMBR_PREFIX = $(LIB_PREFIX)/mbr
     149LIBGPT_PREFIX = $(LIB_PREFIX)/gpt
    142150
    143151ifeq ($(STATIC_NEEDED),y)
     
    230238endif
    231239
     240# Do we need math?
     241ifeq ($(NEEDS_MATH),y)
     242        BASE_LIBS += $(LIBMATH_PREFIX)/libmath.a
     243endif
     244
    232245## Setup platform configuration
    233246#
     
    241254
    242255ifeq ($(COMPILER),gcc_cross)
     256        CFLAGS += $(GCC_CFLAGS) $(EXTRA_CFLAGS)
     257        DEPEND_DEFS = $(DEFS) $(CONFIG_DEFS)
     258endif
     259
     260ifeq ($(COMPILER),gcc_helenos)
    243261        CFLAGS += $(GCC_CFLAGS) $(EXTRA_CFLAGS)
    244262        DEPEND_DEFS = $(DEFS) $(CONFIG_DEFS)
Note: See TracChangeset for help on using the changeset viewer.