Changeset ad7a6c9 in mainline for uspace/Makefile.common
- Timestamp:
- 2011-03-30T13:10:24Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 4ae90f9
- Parents:
- 6e50466 (diff), d6b81941 (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 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/Makefile.common
r6e50466 rad7a6c9 135 135 endif 136 136 137 ifeq ($(CONFIG_LINE_DEBUG),y) 138 GCC_CFLAGS += -g 139 ICC_CFLAGS += -g 140 SUNCC_CFLAGS += -g 141 CLANG_CFLAGS += -g 142 endif 143 137 144 ## Setup platform configuration 138 145 # … … 210 217 makedepend -f - -- $(DEPEND_DEFS) $(CFLAGS) -- $(SOURCES) > $@ 2> /dev/null 211 218 -[ -f $(DEPEND_PREV) ] && diff -q $(DEPEND_PREV) $@ && mv -f $(DEPEND_PREV) $@ 219 220 ## 221 # This explicit dependecy of the output binary on the object files seems to be 222 # necessary to prevent parallel build failures (GNU make bug #26893 ???). 223 $(OUTPUT): $(OBJECTS) 224
Note:
See TracChangeset
for help on using the changeset viewer.