diff options
Diffstat (limited to 'mk/memmove.d')
| -rw-r--r-- | mk/memmove.d | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/mk/memmove.d b/mk/memmove.d new file mode 100644 index 00000000..778764a2 --- /dev/null +++ b/mk/memmove.d @@ -0,0 +1,10 @@ +libc_C.1: libc.a(memmove.o) +libc.a(memmove.o): $(OBJDIR)/memmove.o + @$(AR) $(ARFLAGS) $@ $(OBJDIR)/$% + +$(OBJDIR)/memmove.o: src/string/memmove.c +$(OBJDIR)/memmove.o: src/_assert.h +$(OBJDIR)/memmove.o: + @echo " [CC] $@" + @mkdir -p $(@D) + @$(CC) -c -o $@ $(CFLAGS) src/string/memmove.c |
