
OBJS = expendfdrun

all: $(OBJS)

install: $(OBJS)
	chmod +x $(OBJS)
	cp -af $(OBJS) /usr/local/bin/.
clean:
	rm -f $(OBJS)

