diff options
author | Jakob Kaivo <jkk@ung.org> | 2020-08-14 22:18:59 -0400 |
---|---|---|
committer | Jakob Kaivo <jkk@ung.org> | 2020-08-14 22:18:59 -0400 |
commit | 5e22f8ab246eae8f38b5c3f3582fb49f3d16d418 (patch) | |
tree | 4050191a4f0a294177f7f1732ddb9b1a87d6c727 /mk/strtoumax.d | |
parent | 51b1cf3a845e34fc616e6c0d3020091d1f79c5eb (diff) |
better dependencies from better autogeneration
Diffstat (limited to 'mk/strtoumax.d')
-rw-r--r-- | mk/strtoumax.d | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/mk/strtoumax.d b/mk/strtoumax.d new file mode 100644 index 00000000..e69baed7 --- /dev/null +++ b/mk/strtoumax.d @@ -0,0 +1,10 @@ +libc_C.199901: libc.a(strtoumax.o) +libc.a(strtoumax.o): $(OBJDIR)/strtoumax.o + @$(AR) $(ARFLAGS) $@ $(OBJDIR)/$% + +$(OBJDIR)/strtoumax.o: src/inttypes/strtoumax.c +$(OBJDIR)/strtoumax.o: src/stdlib/_strtoi.h +$(OBJDIR)/strtoumax.o: + @echo " [CC] $@" + @mkdir -p $(@D) + @$(CC) -c -o $@ $(CFLAGS) src/inttypes/strtoumax.c |