There's a name clash between OpenSSL and RSAref. Since this engine handles
[openssl.git] / demos / tunala / Makefile
index fd5b651bc78527a97cf17f9f8c92137bb40e9435..bef1704a3caa69018d404fb260e0bb334b146beb 100644 (file)
@@ -11,14 +11,14 @@ RM=rm -f
 CC=gcc
 DEBUG_FLAGS=-g -ggdb3 -Wall -Wshadow
 INCLUDE_FLAGS=-I$(SSL_INCLUDEDIR)
-CFLAGS=$(DEBUG_FLAGS) $(INCLUDE_FLAGS)
+CFLAGS=$(DEBUG_FLAGS) $(INCLUDE_FLAGS) -DNO_CONFIG_H
 COMPILE=$(CC) $(CFLAGS) -c
 
 # Edit, particularly the "-ldl" if not building with "dlfcn" support
 LINK_FLAGS=-L$(SSL_LIBDIR) -lssl -lcrypto -ldl
 
-SRCS=buffer.c ip.c sm.c tunala.c
-OBJS=buffer.o ip.o sm.o tunala.o
+SRCS=buffer.c cb.c ip.c sm.c tunala.c breakage.c
+OBJS=buffer.o cb.o ip.o sm.o tunala.o breakage.o
 
 TARGETS=tunala
 
@@ -35,6 +35,7 @@ tunala: $(OBJS)
 
 # Extra dependencies, should really use makedepend
 buffer.o: buffer.c tunala.h
+cb.o: cb.c tunala.h
 ip.o: ip.c tunala.h
 sm.o: sm.c tunala.h
 tunala.o: tunala.c tunala.h