include ../../../config.mk
PROG =  ers_line_fixer
CSRCS = ers_line_fixer.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)
