Files
c/examples/watch_list_pod/Makefile
2020-10-01 20:09:03 +08:00

9 lines
325 B
Makefile

INCLUDE:=-I../../kubernetes/include -I../../kubernetes/model -I../../kubernetes/api -I../../kubernetes/config -I../../kubernetes/watch
LIBS:=-L../../kubernetes/build -lkubernetes -lcurl -lyaml -lpthread -lssl -lz
CFLAGS:=-g
all:
gcc main.c $(CFLAGS) $(INCLUDE) $(LIBS) -o watch_list_pod_bin
clean:
rm ./watch_list_pod_bin