@@ -10,6 +10,8 @@
Portability/compilation fixes:
+ * Pass LDFLAGS from configure on to ld via settings.make.in.
+ * make clean deletes *.so and *.so.* files.
Portability/compilation fixes:
* Move `extern "C" {' to after #include <...>'s.
Portability/compilation fixes:
* Move `extern "C" {' to after #include <...>'s.
+ * Pass LDFLAGS from configure on to ld via settings.make.in.
+ * make clean deletes *.so and *.so.* files.
Minor improvements:
* Do not print warning if sendto() gives EAGAIN.
Minor improvements:
* Do not print warning if sendto() gives EAGAIN.
CC= @CC@
CFLAGS= $(AUTOCFLAGS) $(WARNS) $(WERROR) $(DIRCFLAGS) $(XCFLAGS)
CC= @CC@
CFLAGS= $(AUTOCFLAGS) $(WARNS) $(WERROR) $(DIRCFLAGS) $(XCFLAGS)
+LDFLAGS= $(AUTOLDFLAGS) $(DIRLDFLAGS) $(XLDFLAGS)
LDLIBS= @LIBS@ $(XLIBS)
AUTOCFLAGS= @CFLAGS@
LDLIBS= @LIBS@ $(XLIBS)
AUTOCFLAGS= @CFLAGS@
WARNS= @WARNS@
#WERROR= -Werror
WARNS= @WARNS@
#WERROR= -Werror
all: $(TARGETS)
clean mostlyclean:
all: $(TARGETS)
clean mostlyclean:
+ rm -f *.o *.tmp* *.so *.so.*
distclean: clean
rm -f $(TARGETS) *~ ./#*# core *.orig *.rej Makefile
distclean: clean
rm -f $(TARGETS) *~ ./#*# core *.orig *.rej Makefile