CC = gcc -std=c99 -pedantic -Wall -s -O3 DEST = ../../bin/rand3 all: rand3 rand3: rand3.c $(CC) -o rand3 rand3.c install: rand3 rm -f $(DEST) mv rand3 $(DEST) chown root:root $(DEST) chmod 111 $(DEST) clean: rm -f a.out core rand3