CC=gcc CFLAGS=-std=c11 -g -Wall -Wpedantic all: count_stream count_fd count_stream: count_stream.c $(CC) $(CFLAGS) count_stream.c -o count_stream count_fd: count_fd.c $(CC) $(CFLAGS) count_fd.c -o count_fd clean: rm -f *~ *.o count_stream count_fd