Commit eb1d6822 authored by osdl.net!shemminger's avatar osdl.net!shemminger

(Logical change 1.141)

parent f84f9d04
DISTGEN = maketable normal pareto paretonormal
DISTDATA = normal.dist pareto.dist paretonormal.dist experimental.dist
LDLIBS += -lm
%.dist: %.c
$(HOSTCC) $(CFLAGS) -o $* $< -lm
./$* >$@
%.dist: %.dat
./maketable $< >$@
all: $(DISTGEN) $(DISTDATA)
install: all
mkdir -p $(DESTDIR)/usr/lib/tc
for i in $(DISTDATA); \
do install -m 755 $$i $(DESTDIR)/usr/lib/tc; \
done
clean:
rm -f $(DISTDATA) $(DISTGEN)
maketable: maketable.c
$(HOSTCC) $(CFLAGS) -o $@ $< -lm
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment