diff options
author | H. Peter Anvin <hpa@zytor.com> | 2011-01-16 22:25:52 -0800 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2011-01-16 22:26:59 -0800 |
commit | 5d5d8be9deb29563d666323aaeb9baf03e470a9c (patch) | |
tree | 9adae05d3577f4b9a6392821f31da2595f6b93c7 /MCONFIG.in | |
parent | be986af65aad4dc28fd5c1ff33700ee54a09c79c (diff) | |
download | ipxrelay-5d5d8be9deb29563d666323aaeb9baf03e470a9c.tar.gz ipxrelay-5d5d8be9deb29563d666323aaeb9baf03e470a9c.tar.xz ipxrelay-5d5d8be9deb29563d666323aaeb9baf03e470a9c.zip |
More autoconf workautoconf
Unfortunately autoconf handles winsock extremely poorly due to
the special calling convention, so the autoconf track might have
been a mistake.
Diffstat (limited to 'MCONFIG.in')
-rw-r--r-- | MCONFIG.in | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -57,8 +57,12 @@ CFLAGS = @CFLAGS@ -I$(SRCROOT) # Link flags LDFLAGS = @LDFLAGS@ +# Libraries +LIBS = @LIBS@ + # Additional library we need to build -LIBOBJS = $(addprefix lib/,@LIBOBJS@) +LIBOBJDIR = lib/ +LIBOBJS = @LIBOBJS@ # ar and ranlib (for making libraries) AR = ar cq |