| OLD | NEW |
| 1 ## Process this file with automake to produce Makefile.in | 1 ## Process this file with automake to produce Makefile.in |
| 2 | 2 |
| 3 # Make sure that when we re-make ./configure, we get the macros we need | 3 # Make sure that when we re-make ./configure, we get the macros we need |
| 4 # ACLOCAL_AMFLAGS = -I m4 | 4 # ACLOCAL_AMFLAGS = -I m4 |
| 5 | 5 |
| 6 # This is so we can #include <google/foo> | 6 # This is so we can #include <google/foo> |
| 7 AM_CPPFLAGS = -I$(top_srcdir)/src | 7 AM_CPPFLAGS = -I$(top_srcdir)/src |
| 8 | 8 |
| 9 # For a non-optimized (debug) build, change "-DNDEBUG" to "-DDEBUG". | 9 # For a non-optimized (debug) build, change "-DNDEBUG" to "-DDEBUG". |
| 10 AM_CXXFLAGS = -DNDEBUG | 10 AM_CXXFLAGS = -DNDEBUG |
| (...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 187 @cd packages && ./rpm.sh ${PACKAGE} ${VERSION} | 187 @cd packages && ./rpm.sh ${PACKAGE} ${VERSION} |
| 188 | 188 |
| 189 deb: dist-gzip packages/deb.sh packages/deb/* | 189 deb: dist-gzip packages/deb.sh packages/deb/* |
| 190 @cd packages && ./deb.sh ${PACKAGE} ${VERSION} | 190 @cd packages && ./deb.sh ${PACKAGE} ${VERSION} |
| 191 | 191 |
| 192 libtool: $(LIBTOOL_DEPS) | 192 libtool: $(LIBTOOL_DEPS) |
| 193 $(SHELL) ./config.status --recheck | 193 $(SHELL) ./config.status --recheck |
| 194 | 194 |
| 195 EXTRA_DIST = packages/rpm.sh packages/rpm/rpm.spec packages/deb.sh \ | 195 EXTRA_DIST = packages/rpm.sh packages/rpm/rpm.spec packages/deb.sh \ |
| 196 packages/deb autogen.sh $(SCRIPTS) libtool | 196 packages/deb autogen.sh $(SCRIPTS) libtool |
| OLD | NEW |