Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/libc/Makefile.build

    rcc1f8d4 r8786aa5  
    5050        generic/as.c \
    5151        generic/cap.c \
     52        generic/clipboard.c \
    5253        generic/devmap.c \
    5354        generic/event.c \
     
    5657        generic/string.c \
    5758        generic/fibril.c \
    58         generic/fibril_sync.c \
     59        generic/fibril_synch.c \
    5960        generic/pcb.c \
    6061        generic/smc.c \
     
    8687        generic/udebug.c \
    8788        generic/vfs/vfs.c \
    88         generic/vfs/canonify.c
     89        generic/vfs/canonify.c \
     90        generic/stacktrace.c
    8991
    9092ARCH_SOURCES += \
     
    110112%.o: %.S $(DEPEND)
    111113        $(CC) $(DEFS) $(AFLAGS) $(CFLAGS) -D__ASM__ -c $< -o $@
     114ifeq ($(PRECHECK),y)
     115        $(JOBFILE) $(JOB) $< $@ as asm/preproc $(DEFS) $(AFLAGS) $(CFLAGS) -D__ASM__
     116endif
    112117
    113118%.o: %.s $(DEPEND)
    114119        $(AS) $(AFLAGS) $< -o $@
     120ifeq ($(PRECHECK),y)
     121        $(JOBFILE) $(JOB) $< $@ as asm $(AFLAGS)
     122endif
    115123
    116124%.o: %.c $(DEPEND)
    117125        $(CC) $(DEFS) $(CFLAGS) -c $< -o $@
     126ifeq ($(PRECHECK),y)
     127        $(JOBFILE) $(JOB) $< $@ cc core $(DEFS) $(CFLAGS)
     128endif
    118129
    119130$(DEPEND): $(INCLUDE_KERNEL) $(INCLUDE_ARCH) $(INCLUDE_LIBARCH)
Note: See TracChangeset for help on using the changeset viewer.