Changeset d7ff048 in mainline for uspace/lib/nic/Makefile
- Timestamp:
- 2011-10-08T13:08:53Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- bf08ff0
- Parents:
- 8367d1d (diff), 80099c19 (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. - File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/nic/Makefile
r8367d1d rd7ff048 1 1 # 2 # Copyright (c) 2005 Martin Decky 3 # Copyright (c) 2007 Jakub Jermar 2 # Copyright (c) 2011 Radim Vansa 4 3 # All rights reserved. 5 4 # … … 28 27 # 29 28 30 USPACE_PREFIX = ../../../.. 31 ROOT_PATH = $(USPACE_PREFIX)/.. 32 LIBS = $(LIBNET_PREFIX)/libnet.a 33 EXTRA_CFLAGS = -I$(LIBNET_PREFIX)/include 34 35 COMMON_MAKEFILE = $(ROOT_PATH)/Makefile.common 36 CONFIG_MAKEFILE = $(ROOT_PATH)/Makefile.config 37 38 -include $(COMMON_MAKEFILE) 39 -include $(CONFIG_MAKEFILE) 40 41 BINARY = ne2000 29 USPACE_PREFIX = ../.. 30 LIBRARY = libnic 31 LIBS = $(LIBDRV_PREFIX)/libdrv.a $(LIBNET_PREFIX)/libnet.a 32 EXTRA_CFLAGS += -DLIBNIC_INTERNAL -Iinclude -I$(LIBDRV_PREFIX)/include -I$(LIBNET_PREFIX)/include 42 33 43 34 SOURCES = \ 44 dp8390.c \ 45 ne2000.c 35 src/nic_driver.c \ 36 src/nic_addr_db.c \ 37 src/nic_rx_control.c \ 38 src/nic_wol_virtues.c \ 39 src/nic_impl.c 46 40 47 41 include $(USPACE_PREFIX)/Makefile.common
Note:
See TracChangeset
for help on using the changeset viewer.