forked from RustingSword/tensorboard_logger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
37 lines (26 loc) · 792 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
PROTOC = protoc
INCLUDES = -Iinclude
LDFLAGS = -lprotobuf -lpthread
CC = g++ -std=c++11 -O3 -Wall
PROTOS = $(wildcard proto/*.proto)
SRCS = $(patsubst proto/%.proto,src/%.pb.cc,$(PROTOS))
SRCS += src/tensorboard_logger.cc src/crc.cc
OBJS = $(patsubst src/%.cc,src/%.o,$(SRCS))
LIB = libtensorboard_logger.a
.PHONY: all proto obj test clean distclean lib
all: proto obj lib test
obj: $(OBJS)
proto: $(PROTOS)
$(PROTOC) -Iproto $(PROTOS) --cpp_out=proto
mv proto/*.cc src
mv proto/*.h include
$(OBJS): %.o: %.cc proto
$(CC) $(INCLUDES) -c $< -o $@
lib: proto obj
ar rcs $(LIB) $(OBJS)
test: tests/test_tensorboard_logger.cc lib
$(CC) $(INCLUDES) $< $(LIB) -o $@ $(LDFLAGS)
clean:
rm -rf src/*.o $(LIB) test tfevents.pb demo
distclean: clean
rm -f include/*.pb.h src/*.pb.cc