# 
# We are using implicit rules here
# 
CC = gcc
CFLAGS = -g -Wall -std=c99
OBJECTS = redir


all: $(OBJECTS)  

clean:
	rm -f *.o $(OBJECTS)

