# Create Makefile with the following targets:
#  all, srtree, install, clean.
        CC = gcc
    CFLAGS = -ansi -O2

all: srtree ../bin/srtree

srtree : srtree.o dpa.o
	$(CC) $(CFLAGS) srtree.o dpa.o -o srtree 

../bin/srtree: srtree
	cp srtree ../bin

install: 
	@echo "Nothing to be done for install"

clean:
	rm -f *.o *~ srtree
