2020-04-05 19:34:24 +08:00
|
|
|
INCLUDE:=-I../../kubernetes/include -I../../kubernetes/model -I../../kubernetes/api -I../../kubernetes/config
|
2021-06-06 13:06:50 +08:00
|
|
|
LIBS:=-L../../kubernetes/build -lkubernetes -lyaml -lwebsockets -L/usr/local/lib
|
2020-03-19 09:56:19 +08:00
|
|
|
CFLAGS:=-g
|
2021-01-12 16:23:37 +08:00
|
|
|
BIN:=create_pod_bin
|
2020-03-19 09:56:19 +08:00
|
|
|
|
|
|
|
|
all:
|
2021-01-12 16:23:37 +08:00
|
|
|
gcc main.c $(CFLAGS) $(INCLUDE) $(LIBS) -o $(BIN)
|
2020-03-19 09:56:19 +08:00
|
|
|
clean:
|
2021-01-12 16:23:37 +08:00
|
|
|
rm ./$(BIN)
|
|
|
|
|
test:
|
|
|
|
|
./$(BIN)
|