summary |
shortlog |
log |
commit | commitdiff |
tree
raw |
patch |
inline | side by side (from parent 1:
c050daf)
in README.html.
+ * Create $(bin_dir) and $(lib_dir) on `make install', and also
+ make a libadns.so.1 -> libadns.so.1.<minor> link. (Suggestions
+ and patch from Nix of esperi.org.uk.)
* Include reference to Peter Simons's Haskell bindings
in README.html.
* Include reference to Peter Simons's Haskell bindings
in README.html.
+ * Create $(bin_dir) and $(lib_dir) on `make install', and also
+ make a libadns.so.1 -> libadns.so.1.<minor> link. (Suggestions
+ and patch from Nix of esperi.org.uk.)
Fixes from or suggested by Bernd Eckenfels, the Debian maintainer:
* Correct type of various printf arguments: ptrdiff_t != int.
Fixes from or suggested by Bernd Eckenfels, the Debian maintainer:
* Correct type of various printf arguments: ptrdiff_t != int.
all: $(TARGETS)
install: $(TARG_INSTALL)
all: $(TARGETS)
install: $(TARG_INSTALL)
set -xe; for f in $(TARG_INSTALL); \
do $(INSTALL_PROGRAM) $$f $(bin_dir)/$$f; done
set -xe; for f in $(TARG_INSTALL); \
do $(INSTALL_PROGRAM) $$f $(bin_dir)/$$f; done
ALLOBJS= $(addsuffix _p.o, $(basename $(LIBOBJS)))
install:
ALLOBJS= $(addsuffix _p.o, $(basename $(LIBOBJS)))
install:
$(INSTALL_PROGRAM) $(SHLIBFILE) $(lib_dir)/$(SHLIBFILE)
ln -sf $(SHLIBFILE) $(lib_dir)/$(SHLIBSONAME)
$(INSTALL_PROGRAM) $(SHLIBFILE) $(lib_dir)/$(SHLIBFILE)
ln -sf $(SHLIBFILE) $(lib_dir)/$(SHLIBSONAME)
+ ln -sf $(SHLIBSONAME) $(lib_dir)/$(SHLIBFORLINK)
uninstall:
rm -f $(lib_dir)/$(SHLIBFILE) $(lib_dir)/$(SHLIBSONAME)
uninstall:
rm -f $(lib_dir)/$(SHLIBFILE) $(lib_dir)/$(SHLIBSONAME)
include adns.make
install:
include adns.make
install:
+ mkdir -p $(lib_dir) $(include_dir)
set -xe; for f in $(TARGETS); \
do $(INSTALL_DATA) $$f $(lib_dir)/$$f; done
$(INSTALL_DATA) $(srcdir)/../src/adns.h $(include_dir)/adns.h
set -xe; for f in $(TARGETS); \
do $(INSTALL_DATA) $$f $(lib_dir)/$$f; done
$(INSTALL_DATA) $(srcdir)/../src/adns.h $(include_dir)/adns.h