CC = gcc
FLAGS = -Wall -O6 -fomit-frame-pointer -static -s

all: brand ww
clean:
	rm -f brand ww *.o *~

infect.o: infect.c infect.h
	$(CC) $(FLAGS) infect.c -c

brand:
	$(CC) $(FLAGS) brand.c -o brand

ww:	infect.o brand
	$(CC) $(FLAGS) infect.o ww.c -o ww
	./brand ww
