Changes in uspace/Makefile.common [4fb794c:8620b2f] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/Makefile.common
r4fb794c r8620b2f 45 45 # 46 46 # POSIX_COMPAT set to 'y' to use POSIX compatibility layer 47 # NEEDS_MATH set to 'y' to add implementation of mathematical functions 47 48 # 48 49 # Optionally, for a binary: … … 109 110 LIBSOFTFLOAT_PREFIX = $(LIB_PREFIX)/softfloat 110 111 LIBSOFTINT_PREFIX = $(LIB_PREFIX)/softint 112 LIBMATH_PREFIX = $(LIB_PREFIX)/math 111 113 112 114 LIBPOSIX_PREFIX = $(LIB_PREFIX)/posix … … 131 133 132 134 LIBDRV_PREFIX = $(LIB_PREFIX)/drv 135 LIBHOUND_PREFIX = $(LIB_PREFIX)/hound 136 LIBPCM_PREFIX = $(LIB_PREFIX)/pcm 133 137 LIBNET_PREFIX = $(LIB_PREFIX)/net 134 138 LIBNIC_PREFIX = $(LIB_PREFIX)/nic … … 138 142 139 143 LIBBITHENGE_PREFIX = $(LIB_PREFIX)/bithenge 144 145 LIBHTTP_PREFIX = $(LIB_PREFIX)/http 146 LIBURI_PREFIX = $(LIB_PREFIX)/uri 140 147 141 148 ifeq ($(STATIC_NEEDED),y) … … 222 229 endif 223 230 224 ## Setup platform configuration 225 # 226 227 -include $(LIBC_PREFIX)/arch/$(UARCH)/Makefile.common 228 229 ## Compilation options 230 # 231 232 JOBFILE = $(LIBC_PREFIX)/../../../tools/jobfile.py 233 231 # Prepare for POSIX before including platform specific stuff 234 232 ifeq ($(POSIX_COMPAT),y) 235 233 CFLAGS = -I$(LIBPOSIX_PREFIX)/include/posix -I$(LIBPOSIX_PREFIX)/include/ 236 LIBS += $(LIBPOSIX_PREFIX)/libposix.a 237 endif 234 BASE_LIBS = $(LIBPOSIX_PREFIX)/libposixaslibc.a $(LIBPOSIX_PREFIX)/libc4posix.a $(LIBSOFTINT_PREFIX)/libsoftint.a 235 endif 236 237 # Do we need math? 238 ifeq ($(NEEDS_MATH),y) 239 BASE_LIBS += $(LIBMATH_PREFIX)/libmath.a 240 endif 241 242 ## Setup platform configuration 243 # 244 245 -include $(LIBC_PREFIX)/arch/$(UARCH)/Makefile.common 246 247 ## Compilation options 248 # 249 250 JOBFILE = $(LIBC_PREFIX)/../../../tools/jobfile.py 238 251 239 252 ifeq ($(COMPILER),gcc_cross) 253 CFLAGS += $(GCC_CFLAGS) $(EXTRA_CFLAGS) 254 DEPEND_DEFS = $(DEFS) $(CONFIG_DEFS) 255 endif 256 257 ifeq ($(COMPILER),gcc_helenos) 240 258 CFLAGS += $(GCC_CFLAGS) $(EXTRA_CFLAGS) 241 259 DEPEND_DEFS = $(DEFS) $(CONFIG_DEFS)
Note:
See TracChangeset
for help on using the changeset viewer.