1
0
Fork 0

removed unneeded protobuf makefile

This commit is contained in:
Jan Steemann 2012-10-11 15:59:43 +02:00
parent 447d342795
commit afc80f51cd
1 changed files with 0 additions and 55 deletions

View File

@ -1,55 +0,0 @@
# -*- mode: Makefile; -*-
## -----------------------------------------------------------------------------
## --SECTION-- LIBRARY
## -----------------------------------------------------------------------------
################################################################################
### @brief Protobuf
################################################################################
BUILT_SOURCES += @PROTOBUF_LIBS@
CLEANUP += @srcdir@/.protobuf-build-@TRI_BITS@
PROTOBUFDIR = @abs_top_srcdir@/3rdParty/protobuf-2.4.1/BUILD
@PROTOBUF_LIBS@: @srcdir@/.protobuf-build-@TRI_BITS@
@PROTOBUF_PROTOC@: @srcdir@/.protobuf-build-@TRI_BITS@
@srcdir@/.protobuf-build-@TRI_BITS@:
@echo
@echo "--------------------------------------------------------------------------------"
@echo "BUILDING Protocol Buffers"
@echo "--------------------------------------------------------------------------------"
@echo
cd @top_srcdir@/3rdParty/protobuf-2.4.1 \
&& ./configure \
--disable-dependency-tracking \
--disable-shared \
--prefix=$(PROTOBUFDIR) \
--libdir=$(PROTOBUFDIR)/lib@TRI_BITS@
cd @top_srcdir@/3rdParty/protobuf-2.4.1 && $(MAKE) install
touch @srcdir@/.protobuf-build-@TRI_BITS@
@echo
@echo "--------------------------------------------------------------------------------"
@echo "BUILD Protocol Buffers FINISHED"
@echo "--------------------------------------------------------------------------------"
@echo
################################################################################
### @brief additional files to remove
################################################################################
CLEANUP += .protobuf-build-@TRI_BITS@
## -----------------------------------------------------------------------------
## --SECTION-- END-OF-FILE
## -----------------------------------------------------------------------------
## Local Variables:
## mode: outline-minor
## outline-regexp: "^\\(### @brief\\|## --SECTION--\\|# -\\*- \\)"
## End: