diff options
Diffstat (limited to 'mk/select_char_set.d')
-rw-r--r-- | mk/select_char_set.d | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/mk/select_char_set.d b/mk/select_char_set.d new file mode 100644 index 0000000..4f66c14 --- /dev/null +++ b/mk/select_char_set.d @@ -0,0 +1,8 @@ +libcurses.a: libcurses.a(select_char_set.o) +libcurses.a(select_char_set.o): $(OBJDIR)/select_char_set.o + @$(AR) $(ARFLAGS) $@ $(OBJDIR)/$% + +$(OBJDIR)/select_char_set.o: term/select_char_set.c + @echo "[CC] $@" + @mkdir -p "$(@D)" + @$(CC) -c -o $@ $(CFLAGS) term/select_char_set.c |