CC = gcc
CFLAGS = -g -O -Wall
LDFLAGS = -s

all:	uredir

uredir:	uredir.o
	$(CC) $(LDFLAGS) -o uredir uredir.o

clean:
	@rm -f *.o uredir
