]> git.ipfire.org Git - thirdparty/haproxy.git/commitdiff
[BUILD] updated Makefile.bsd for the new files
authorwilly tarreau <willy@wtap.(none)>
Wed, 17 May 2006 23:22:27 +0000 (01:22 +0200)
committerwilly tarreau <willy@wtap.(none)>
Wed, 17 May 2006 23:22:27 +0000 (01:22 +0200)
Makefile.bsd

index 4d3951ef649f0dfc1bf573dfa2dda2a407de7cba..3dbb1189d289d49e93883faab871bfebf9a9fe8c 100644 (file)
@@ -80,9 +80,15 @@ LDFLAGS = -g
 
 all: haproxy
 
-haproxy: src/list.o src/chtbl.o src/hashpjw.o haproxy.o
+haproxy: src/list.o src/chtbl.o src/hashpjw.o haproxy.o src/base64.o src/uri_auth.o
        $(LD) $(LDFLAGS) -o $@ $> $(LIBS)
 
+src/base64.o:  src/base64.c
+       $(CC) $(CFLAGS) -c -o $@ $<
+
+src/uri_auth.o:        src/uri_auth.c
+       $(CC) $(CFLAGS) -c -o $@ $<
+
 src/list.o:    src/list.c
        $(CC) $(CFLAGS) -c -o $@ $<