OBJS = shp2pgsql.o shpopen.o dbfopen.o
PROG = shp2pgsql

all: $(PROG)

$(PROG): $(OBJS)

clean:
	@rm -f $(OBJS) $(PROG)


