# quickie last100g makefile. you need to make INCLPATH point to your 
# dd.h too in order to compile with success --flower

CPP=g++
INCLPATH=-I../../main -I.

all:	last100g

install: last100g
	install -o bbs -g prjdd last100g /home/bbs/utils

last100g: last100g.cpp
	$(CPP) -o $@ $< $(INCLPATH)
