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