]> git.tuebingen.mpg.de Git - adu.git/blobdiff - Makefile
Get rid of the osl code.
[adu.git] / Makefile
index 674ff307ba8636864bd861961d8e3c1999bdf8bf..3cd9cc4a73a0a847ccb459dc699b3e007323f0c5 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-objects := osl.o fd.o rbtree.o string.o adu.o sha1.o
+objects := adu.o string.o
 all: adu
 
 DEBUG_CPPFLAGS += -Wno-sign-compare -g -Wunused -Wundef -W
@@ -19,7 +19,7 @@ Makefile.deps: $(wildcard *.c *.h)
 -include Makefile.deps
 
 adu: $(objects)
-       $(CC) -o $@ $(objects) -lcrypto
+       $(CC) -o $@ $(objects) -lcrypto -losl
 
 %.o: %.c Makefile
        $(CC) -c $(CPPFLAGS) $(DEBUG_CPPFLAGS) $<