Changeset dd0c8a0 in mainline for uspace/lib/c/Makefile
- Timestamp:
- 2013-09-29T06:56:33Z (12 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- a9bd960d
- Parents:
- 3deb0155 (diff), 13be2583 (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/lib/c/Makefile
r3deb0155 rdd0c8a0 61 61 generic/bd.c \ 62 62 generic/bd_srv.c \ 63 generic/bitops.c \ 63 64 generic/cap.c \ 64 65 generic/cfg.c \ 65 66 generic/clipboard.c \ 67 generic/corecfg.c \ 66 68 generic/devman.c \ 67 69 generic/device/hw_res.c \ 68 70 generic/device/hw_res_parsed.c \ 71 generic/device/pio_window.c \ 69 72 generic/device/char_dev.c \ 70 73 generic/device/clock_dev.c \ … … 74 77 generic/device/pci.c \ 75 78 generic/device/ahci.c \ 79 generic/dhcp.c \ 80 generic/dnsr.c \ 76 81 generic/dlfcn.c \ 77 82 generic/elf/elf_load.c \ … … 91 96 generic/task.c \ 92 97 generic/futex.c \ 98 generic/inet/addr.c \ 93 99 generic/inet.c \ 94 100 generic/inetcfg.c \ 95 101 generic/inetping.c \ 102 generic/inetping6.c \ 96 103 generic/io/asprintf.c \ 97 104 generic/io/input.c \ … … 161 168 162 169 $(LIBC_PREFIX)/arch/$(UARCH)/_link.ld: $(LIBC_PREFIX)/arch/$(UARCH)/_link.ld.in 163 $( GCC) $(DEFS) $(CFLAGS) -DLIBC_PATH=$(CURDIR) -E -x c $< | grep -v "^\#" > $@170 $(CC) $(DEFS) $(CFLAGS) -DLIBC_PATH=$(CURDIR) -E -x c $< | grep -v "^\#" > $@ 164 171 165 172 $(LIBC_PREFIX)/arch/$(UARCH)/_link-loader.ld: $(LIBC_PREFIX)/arch/$(UARCH)/_link.ld.in 166 $( GCC) $(DEFS) $(CFLAGS) -DLIBC_PATH=$(CURDIR) -DLOADER -E -x c $< | grep -v "^\#" > $@173 $(CC) $(DEFS) $(CFLAGS) -DLIBC_PATH=$(CURDIR) -DLOADER -E -x c $< | grep -v "^\#" > $@ 167 174 168 175 $(LIBC_PREFIX)/arch/$(UARCH)/_link-shlib.ld: $(LIBC_PREFIX)/arch/$(UARCH)/_link.ld.in 169 $( GCC) $(DEFS) $(CFLAGS) -DLIBC_PATH=$(CURDIR) -DSHLIB -E -x c $< | grep -v "^\#" > $@176 $(CC) $(DEFS) $(CFLAGS) -DLIBC_PATH=$(CURDIR) -DSHLIB -E -x c $< | grep -v "^\#" > $@ 170 177 171 178 $(LIBC_PREFIX)/arch/$(UARCH)/_link-dlexe.ld: $(LIBC_PREFIX)/arch/$(UARCH)/_link.ld.in 172 $( GCC) $(DEFS) $(CFLAGS) -DLIBC_PATH=$(CURDIR) -DDLEXE -E -x c $< | grep -v "^\#" > $@179 $(CC) $(DEFS) $(CFLAGS) -DLIBC_PATH=$(CURDIR) -DDLEXE -E -x c $< | grep -v "^\#" > $@ 173 180 174 181 $(COMMON_HEADER_ARCH): $(COMMON_HEADER)
Note:
See TracChangeset
for help on using the changeset viewer.