include ../../../config.mk
PROG =  read_data_file_dpaf
CSRCS = read_data_file_dpaf.c

OBJS =  $(CSRCS:.c=.o)	

INCLUDES = -I../include
LIBS = -lm

$(PROG): $(OBJS)
	$(LINK.c) -o $@ $(OBJS) $(LIBS) 

all:	$(PROG)

clean:
	rm -f $(OBJS) tags core *.c.* $(PROG)

install:
	$(INSTALL) $(PROG) $(bindir)

uninstall:
	rm -f $(bindir)/$(PROG)
