#
#
#

BINDIR = /usr/local/bin
BINARY = pdb2sgf

all:
	gcc -Wall -o ${BINARY} pdb2sgf.c 



rcs:
	for f in *.c *.h Makefile ;do \
		ci -l  -m\"\" $$f ;\
	done 


clean:
	rm  -f *.o ${BINARY} *.sgf *.obj *.tds 



install:
	cp -p ${BINARY} ${BINDIR}




