diff options
author | Jakob Kaivo <jkk@ung.org> | 2020-07-14 17:00:49 -0400 |
---|---|---|
committer | Jakob Kaivo <jkk@ung.org> | 2020-07-14 17:00:49 -0400 |
commit | fe5a38fc526c373c5cabad4f963fbd99ffb712e9 (patch) | |
tree | 4e4d46aa2c985a5ea2064902bc433c30a3999255 /Makefile | |
parent | 6b8dfa2858c16b3cba4cd1e560000c47db3e50e6 (diff) |
split i/o stuff out to io.c
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -18,7 +18,13 @@ all: $(BINDIR)/more clean: rm -f $(BINDIR)/more $(OBJDIR)/*.o +$(BINDIR)/more: $(OBJDIR)/io.o +$(OBJDIR)/io.o: $(SRCDIR)/more.h +$(OBJDIR)/io.o: $(SRCDIR)/io.c + $(CC) $(CFLAGS) -o $@ -c $(SRCDIR)/io.c + $(BINDIR)/more: $(OBJDIR)/more.o +$(OBJDIR)/more.o: $(SRCDIR)/more.h $(OBJDIR)/more.o: $(SRCDIR)/more.c $(CC) $(CFLAGS) -o $@ -c $(SRCDIR)/more.c |