# Makefile for up --- it's a tough one :)

up:
	gcc up.c -o up

clean:
	rm -rf *.o
	rm up

all:
	up
