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