all: test-1

test-1: test-1.c
	gcc -Wall -g test-1.c error.c homedir.c -o test-1

clean:
	rm -f test-1
	rm -f *.o
uninstall:
	rm -f /usr/bin/test-1
install:
	cp test-1 /usr/bin/
