Changeset 8786aa5 in mainline for uspace/lib/libc
- Timestamp:
- 2010-01-04T15:21:19Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- b766352
- Parents:
- e405228
- Location:
- uspace/lib/libc
- Files:
-
- 4 edited
-
Makefile (modified) (1 diff)
-
Makefile.build (modified) (1 diff)
-
Makefile.common (modified) (1 diff)
-
Makefile.toolchain (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/libc/Makefile
re405228 r8786aa5 33 33 all: ../../../Makefile.config ../../../config.h ../../../config.defs 34 34 -[ -f $(DEPEND) ] && mv -f $(DEPEND) $(DEPEND_PREV) 35 $(MAKE) -f Makefile.build 35 $(MAKE) -f Makefile.build PRECHECK=$(PRECHECK) 36 36 37 37 clean: 38 rm -f $(DEPEND) $(DEPEND_PREV) $( INCLUDE_KERNEL) $(INCLUDE_ARCH) $(INCLUDE_LIBARCH) $(LIBC) arch/*/_link.ld38 rm -f $(DEPEND) $(DEPEND_PREV) $(JOB) $(INCLUDE_KERNEL) $(INCLUDE_ARCH) $(INCLUDE_LIBARCH) $(LIBC) arch/*/_link.ld 39 39 find generic/ arch/*/ -name '*.o' -follow -exec rm \{\} \; -
uspace/lib/libc/Makefile.build
re405228 r8786aa5 112 112 %.o: %.S $(DEPEND) 113 113 $(CC) $(DEFS) $(AFLAGS) $(CFLAGS) -D__ASM__ -c $< -o $@ 114 ifeq ($(PRECHECK),y) 115 $(JOBFILE) $(JOB) $< $@ as asm/preproc $(DEFS) $(AFLAGS) $(CFLAGS) -D__ASM__ 116 endif 114 117 115 118 %.o: %.s $(DEPEND) 116 119 $(AS) $(AFLAGS) $< -o $@ 120 ifeq ($(PRECHECK),y) 121 $(JOBFILE) $(JOB) $< $@ as asm $(AFLAGS) 122 endif 117 123 118 124 %.o: %.c $(DEPEND) 119 125 $(CC) $(DEFS) $(CFLAGS) -c $< -o $@ 126 ifeq ($(PRECHECK),y) 127 $(JOBFILE) $(JOB) $< $@ cc core $(DEFS) $(CFLAGS) 128 endif 120 129 121 130 $(DEPEND): $(INCLUDE_KERNEL) $(INCLUDE_ARCH) $(INCLUDE_LIBARCH) -
uspace/lib/libc/Makefile.common
re405228 r8786aa5 33 33 DEPEND = Makefile.depend 34 34 DEPEND_PREV = $(DEPEND).prev 35 JOB = libc.job 35 36 LIBC = libc.a 36 37 INCLUDE_KERNEL = include/kernel -
uspace/lib/libc/Makefile.toolchain
re405228 r8786aa5 78 78 # 79 79 80 JOBFILE = $(LIBC_PREFIX)/../../../tools/jobfile.py 81 80 82 ifeq ($(COMPILER),gcc_cross) 81 83 CC = $(TOOLCHAIN_DIR)/$(TARGET)-gcc
Note:
See TracChangeset
for help on using the changeset viewer.
