Changes in uspace/lib/libc/Makefile.build [1e4cada:8786aa5] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/libc/Makefile.build
r1e4cada r8786aa5 87 87 generic/udebug.c \ 88 88 generic/vfs/vfs.c \ 89 generic/vfs/canonify.c 89 generic/vfs/canonify.c \ 90 generic/stacktrace.c 90 91 91 92 ARCH_SOURCES += \ … … 111 112 %.o: %.S $(DEPEND) 112 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 113 117 114 118 %.o: %.s $(DEPEND) 115 119 $(AS) $(AFLAGS) $< -o $@ 120 ifeq ($(PRECHECK),y) 121 $(JOBFILE) $(JOB) $< $@ as asm $(AFLAGS) 122 endif 116 123 117 124 %.o: %.c $(DEPEND) 118 125 $(CC) $(DEFS) $(CFLAGS) -c $< -o $@ 126 ifeq ($(PRECHECK),y) 127 $(JOBFILE) $(JOB) $< $@ cc core $(DEFS) $(CFLAGS) 128 endif 119 129 120 130 $(DEPEND): $(INCLUDE_KERNEL) $(INCLUDE_ARCH) $(INCLUDE_LIBARCH)
Note:
See TracChangeset
for help on using the changeset viewer.