Parcourir la source

Fix Makefile to look for libZT in the right place

Ian Goldberg il y a 2 ans
Parent
commit
cc9a1c9633
1 fichiers modifiés avec 2 ajouts et 2 suppressions
  1. 2 2
      Makefile

+ 2 - 2
Makefile

@@ -11,7 +11,7 @@ toyclient: toyclient.o pirclient.o
 ztlsoramserver: ZT_LSORAMserver.o pirserver.o
 	$(MAKE) -C ZeroTrace/
 	cp ZeroTrace/Sample_App/ZT.hpp .
-	$(CXX) -std=c++11 ZT_LSORAMserver.cc pirserver.cc utils.cc -Wall -L=$(CURDIR) -lZT -lcrypto -Wl,--rpath=$(CURDIR) -o $@
+	$(CXX) -std=c++11 ZT_LSORAMserver.cc pirserver.cc utils.cc -Wall -L=$(CURDIR)/ZeroTrace -lZT -lcrypto -Wl,--rpath=$(CURDIR)/ZeroTrace -o $@
 
 ztlsoramclient: ZT_LSORAMclient.o pirclient.o utils.o
 	$(CXX) -Wall -o  $@ $^ -lcrypto
@@ -19,7 +19,7 @@ ztlsoramclient: ZT_LSORAMclient.o pirclient.o utils.o
 ztoramserver: ZT_ORAMserver.o pirserver.o
 	$(MAKE) -C ZeroTrace/
 	cp ZeroTrace/Sample_App/ZT.hpp .
-	$(CXX) -std=c++11 ZT_ORAMserver.cc pirserver.cc utils.cc -Wall -L=$(CURDIR) -lZT -lcrypto -Wl,--rpath=$(CURDIR) -o $@
+	$(CXX) -std=c++11 ZT_ORAMserver.cc pirserver.cc utils.cc -Wall -L=$(CURDIR)/ZeroTrace -lZT -lcrypto -Wl,--rpath=$(CURDIR)/ZeroTrace -o $@
 
 ztoramclient: ZT_LSORAMclient.o pirclient.o utils.o
 	$(CXX) -Wall -o  $@ $^ -lcrypto