Changeset 2af29ed in mainline
- Timestamp:
- 2011-06-08T19:44:02Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 4ac901c
- Parents:
- 1564c4b (diff), ae1c11b (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. - Location:
- uspace
- Files:
-
- 19 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/Makefile
r1564c4b r2af29ed 178 178 lib/usbdev \ 179 179 lib/usbhid \ 180 lib/usbvirt 180 lib/usbvirt \ 181 lib/posix 181 182 182 183 LIBC_BUILD = $(addsuffix .build,$(LIBC)) -
uspace/Makefile.common
r1564c4b r2af29ed 44 44 # EXTRA_CLEAN additional cleanup targets 45 45 # 46 # POSIX_COMPAT set to 'y' to use POSIX compatibility layer 47 # 46 48 # Optionally, for a binary: 47 49 # STATIC_NEEDED set to 'y' for init binaries, will build statically … … 104 106 LIBSOFTINT_PREFIX = $(LIB_PREFIX)/softint 105 107 106 LIB COMPAT_PREFIX = $(LIB_PREFIX)/compat108 LIBPOSIX_PREFIX = $(LIB_PREFIX)/posix 107 109 108 110 LIBBLOCK_PREFIX = $(LIB_PREFIX)/block … … 213 215 JOBFILE = $(LIBC_PREFIX)/../../../tools/jobfile.py 214 216 215 ifeq ($(POSIX_COMPAT), 1)216 CFLAGS = -I$(LIB COMPAT_PREFIX)217 LIBS += $(LIB COMPAT_PREFIX)/libcompat.a217 ifeq ($(POSIX_COMPAT),y) 218 CFLAGS = -I$(LIBPOSIX_PREFIX) 219 LIBS += $(LIBPOSIX_PREFIX)/libposix.a 218 220 endif 219 221
Note:
See TracChangeset
for help on using the changeset viewer.