* Added a 'haproxy.bsd' entry to fix openbsd build

This commit is contained in:
Willy TARREAU 2006-01-29 23:19:04 +01:00
parent 726618c761
commit edb12df477

View File

@ -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)