diff options
Diffstat (limited to 'mk/__printf.d')
| -rw-r--r-- | mk/__printf.d | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/mk/__printf.d b/mk/__printf.d new file mode 100644 index 00000000..89cddfc3 --- /dev/null +++ b/mk/__printf.d @@ -0,0 +1,16 @@ +libc_C.0: libc.a(__printf.o) +libc.a(__printf.o): $(OBJDIR)/__printf.o + @$(AR) $(ARFLAGS) $@ $(OBJDIR)/$% + +$(OBJDIR)/__printf.o: src/stdio/__printf.c +$(OBJDIR)/__printf.o: src/stdio/_stdio.h +$(OBJDIR)/__printf.o: src/wctype/wint_t.c +$(OBJDIR)/__printf.o: src/wctype/wctrans_t.c +$(OBJDIR)/__printf.o: src/stdint/intmax_t.c +$(OBJDIR)/__printf.o: src/stdint/uintmax_t.c +$(OBJDIR)/__printf.o: src/stdint/intptr_t.c +$(OBJDIR)/__printf.o: src/stdint/UINTMAX_MAX.c +$(OBJDIR)/__printf.o: + @echo " [CC] $@" + @mkdir -p $(@D) + @$(CC) -c -o $@ $(CFLAGS) src/stdio/__printf.c |
