mirror of
https://github.com/Netflix/dial-reference.git
synced 2026-06-08 10:59:59 +00:00
dial spec 1.7
This commit is contained in:
14
client/makefile
Normal file
14
client/makefile
Normal file
@@ -0,0 +1,14 @@
|
||||
CC=$(TARGET)g++
|
||||
|
||||
.PHONY: clean
|
||||
.DEFAULT_GOAL=dialclient
|
||||
|
||||
includes = $(wildcard *.h)
|
||||
OBJS := main.cpp DialServer.cpp DialDiscovery.cpp DialConformance.cpp DialClientInput.cpp
|
||||
|
||||
# You may not need all these libraries. This example uses a build of curl that needs crypto, ssl, cares, and zlib
|
||||
dialclient: $(OBJS) ${includes}
|
||||
$(CC) -Wall -Werror -g $(OBJS) $(INCLUDES) $(LDFLAGS) -ldl -lpthread -lcurl -lz -lcrypto -lssl -lcares -m32 -o dialclient
|
||||
|
||||
clean:
|
||||
rm -f *.o dialclient
|
||||
Reference in New Issue
Block a user