Changeset 849ed54 in mainline for uspace/Makefile.common


Ignore:
Timestamp:
2010-03-30T18:39:04Z (14 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
7553689
Parents:
7d6fe4db
Message:

Networking work:
Split the networking stack into end-user library (libsocket) and two helper libraries (libnet and libnetif).
Don't use over-the-hand compiling and linking, but rather separation of conserns.
There might be still some issues and the non-modular networking architecture is currently broken, but this will be fixed soon.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/Makefile.common

    r7d6fe4db r849ed54  
    7777
    7878LIB_PREFIX = $(USPACE_PREFIX)/lib
    79 LIBC_PREFIX = $(USPACE_PREFIX)/lib/c
    80 LIBBLOCK_PREFIX = $(USPACE_PREFIX)/lib/block
    81 LIBFS_PREFIX = $(USPACE_PREFIX)/lib/fs
    82 LIBPCI_PREFIX = $(USPACE_PREFIX)/lib/pci
    83 SOFTFLOAT_PREFIX = $(USPACE_PREFIX)/lib/softfloat
    84 SOFTINT_PREFIX = $(USPACE_PREFIX)/lib/softint
    8579
    86 BASE_LIBS = $(LIBC_PREFIX)/libc.a $(SOFTINT_PREFIX)/libsoftint.a
     80LIBC_PREFIX = $(LIB_PREFIX)/c
     81LIBSOFTFLOAT_PREFIX = $(LIB_PREFIX)/softfloat
     82LIBSOFTINT_PREFIX = $(LIB_PREFIX)/softint
     83
     84LIBBLOCK_PREFIX = $(LIB_PREFIX)/block
     85LIBFS_PREFIX = $(LIB_PREFIX)/fs
     86
     87LIBPCI_PREFIX = $(LIB_PREFIX)/pci
     88
     89LIBSOCKET_PREFIX = $(LIB_PREFIX)/socket
     90LIBNET_PREFIX = $(LIB_PREFIX)/net
     91LIBNETIF_PREFIX = $(LIB_PREFIX)/netif
     92
     93BASE_LIBS = $(LIBC_PREFIX)/libc.a $(LIBSOFTINT_PREFIX)/libsoftint.a
    8794
    8895LINKER_SCRIPT ?= $(LIBC_PREFIX)/arch/$(UARCH)/_link.ld
Note: See TracChangeset for help on using the changeset viewer.