From 4b49eed6098881fbde1f6c7728c1346fc8366979 Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Fri, 4 Mar 2016 10:36:08 +1300 Subject: Switch to fopen/fread etc Not quite finished yet -- this does things with stdin I didn't expect, like not printing it line-by-line, and requiring two EOFs for some reason. --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 81db4b5..e373493 100644 --- a/Makefile +++ b/Makefile @@ -1,8 +1,8 @@ CC = gcc CFLAGS = -Wall -Wpedantic -ansi -pedantic-errors -cat : main.o cfn.o cfd.o - $(CC) $(CFLAGS) -o cat main.o cfn.o cfd.o +cat : main.o cfn.o cfp.o + $(CC) $(CFLAGS) -o cat main.o cfn.o cfp.o clean : rm -f -- *.o cat -- cgit v1.2.3