Files
c/examples/create_pod/Makefile
2020-11-29 10:55:11 +08:00

9 lines
265 B
Makefile

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