| Line | |
|---|
| 1 |
|
|---|
| 2 | BOOST_DIR = /usr/local/include
|
|---|
| 3 | THRIFT_DIR = /usr/local/include/thrift
|
|---|
| 4 | LIB_DIR = /usr/local/lib
|
|---|
| 5 | DEFS = -DHAVE_INTTYPES_H -DHAVE_NETINET_IN_H
|
|---|
| 6 |
|
|---|
| 7 | INC = -I$(THRIFT_DIR) -I$(BOOST_DIR)
|
|---|
| 8 |
|
|---|
| 9 | GEN_SRC = rtnetThriftClient.cpp \
|
|---|
| 10 | gen-cpp/RtnetData.cpp \
|
|---|
| 11 | gen-cpp/rtnet_constants.cpp gen-cpp/rtnet_types.cpp \
|
|---|
| 12 | gen-cpp/rtnet_data_constants.cpp gen-cpp/rtnet_data_types.cpp
|
|---|
| 13 |
|
|---|
| 14 | GEN_OBJ = $(patsubst %.cpp,%.o, $(GEN_SRC))
|
|---|
| 15 |
|
|---|
| 16 | .PHONY: all clean
|
|---|
| 17 |
|
|---|
| 18 | all: gen-cpp rtnetThriftClient
|
|---|
| 19 |
|
|---|
| 20 | gen-cpp: rtnet.thrift
|
|---|
| 21 | thrift -r -gen cpp rtnet.thrift
|
|---|
| 22 |
|
|---|
| 23 | %.o: %.cpp
|
|---|
| 24 | $(CXX) -Wall -DHAVE_INTTYPES_H -DHAVE_NETINET_IN_H $(INC) -c $< -o $@
|
|---|
| 25 |
|
|---|
| 26 | ## rtnetThriftClient: rtnetThriftClient.o $(GEN_OBJ)
|
|---|
| 27 | ## $(CXX) $^ -o $@ -L/usr/local/lib -lthrift
|
|---|
| 28 |
|
|---|
| 29 | rtnetThriftClient: rtnetThriftClient.o $(GEN_OBJ)
|
|---|
| 30 | $(CXX) $^ -o $@ /usr/local/lib/libthrift.a
|
|---|
| 31 |
|
|---|
| 32 | clean:
|
|---|
| 33 | $(RM) *.o gen-cpp/*.o rtnetThriftClient |
|---|
Note:
See
TracBrowser
for help on using the repository browser.