9 lines
288 B
Makefile
9 lines
288 B
Makefile
INCLUDE:=-I../../kubernetes/include -I../../kubernetes/model -I../../kubernetes/api -I../../kubernetes/config
|
|
LIBS:=-L../../kubernetes/build -lkubernetes -lcurl -lyaml -lpthread -lssl -lz
|
|
CFLAGS:=-g
|
|
|
|
all:
|
|
gcc main.c $(CFLAGS) $(INCLUDE) $(LIBS) -o list_pod_bin
|
|
clean:
|
|
rm ./list_pod_bin
|