CPP=g++
CC=cc
CFLAGS= -O
LIBS=-lstdc++
EXAMPLES=whoisnt

all:    whoisnt

whoisnt:         whoisnt.o
	$(CC) ${CFLAGS} whoisnt.o $(LIBS) -o whoisnt

whoisnt.o:	whoisnt.cpp
	${CPP} ${CFLAGS} -c whoisnt.cpp

clean:
	rm -f $(EXAMPLES) *.o

test: all
	./whoisnt



