From edb12df47762fa0ad9a189a160e221d985e7b841 Mon Sep 17 00:00:00 2001 From: Willy TARREAU Date: Sun, 29 Jan 2006 23:19:04 +0100 Subject: [PATCH] * Added a 'haproxy.bsd' entry to fix openbsd build --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile b/Makefile index 038170c28..358e5cccc 100644 --- a/Makefile +++ b/Makefile @@ -111,6 +111,10 @@ LDFLAGS = -g all: haproxy +# on OpenBSD, you have to do it this way : +haproxy.bsd: src/list.o src/chtbl.o src/hashpjw.o haproxy.o + $(LD) $(LDFLAGS) -o $@ $> $(LIBS) + haproxy: src/list.o src/chtbl.o src/hashpjw.o haproxy.o $(LD) $(LDFLAGS) -o $@ $^ $(LIBS)