Changes in / [6817eba:1916d1f] in mainline


Ignore:
Files:
5 added
3 deleted
4 edited

Legend:

Unmodified
Added
Removed
  • HelenOS.config

    r6817eba r1916d1f  
    562562! CONFIG_BAREBONE (n/y)
    563563
     564% Build binutils binaries
     565! CONFIG_BINUTILS (n/y)
     566
    564567% Line debugging information
    565568! [CONFIG_STRIP_BINARIES!=y] CONFIG_LINE_DEBUG (n/y)
  • Makefile

    r6817eba r1916d1f  
    100100distclean: clean
    101101        rm -f $(CSCOPE).out $(COMMON_MAKEFILE) $(COMMON_HEADER) $(COMMON_HEADER_PREV) $(CONFIG_MAKEFILE) $(CONFIG_HEADER) tools/*.pyc tools/checkers/*.pyc release/HelenOS-*
     102        cd ./uspace/app/binutils/; ./distclean.sh
    102103
    103104clean:
  • boot/Makefile.common

    r6817eba r1916d1f  
    166166        $(USPACE_PATH)/app/websrv/websrv
    167167
     168ifeq ($(CONFIG_BINUTILS),y)
     169RD_APPS_NON_ESSENTIAL += \
     170        $(USPACE_PATH)/app/binutils/bin/as \
     171        $(USPACE_PATH)/app/binutils/bin/ld
     172endif
     173
    168174ifneq ($(CONFIG_BAREBONE),y)
    169175NET_CFG = \
  • uspace/Makefile

    r6817eba r1916d1f  
    111111        drv/bus/usb/vhc
    112112
     113ifeq ($(CONFIG_BINUTILS),y)
     114DIRS += \
     115        app/binutils
     116endif
     117
    113118## Networking
    114119#
Note: See TracChangeset for help on using the changeset viewer.