| OLD | NEW |
| 1 ## Makefile for the toplevel directory of the libssp library. | 1 ## Makefile for the toplevel directory of the libssp library. |
| 2 ## | 2 ## |
| 3 ## Copyright (C) 2005 | 3 ## Copyright (C) 2005 |
| 4 ## Free Software Foundation, Inc. | 4 ## Free Software Foundation, Inc. |
| 5 ## | 5 ## |
| 6 | 6 |
| 7 AUTOMAKE_OPTIONS = 1.9.5 foreign | 7 AUTOMAKE_OPTIONS = 1.9.5 foreign |
| 8 ACLOCAL_AMFLAGS = -I .. -I ../config | 8 ACLOCAL_AMFLAGS = -I .. -I ../config |
| 9 MAINT_CHARSET = latin1 | 9 MAINT_CHARSET = latin1 |
| 10 | 10 |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 nobase_libsubinclude_HEADERS = ssp/ssp.h ssp/string.h ssp/stdio.h ssp/unistd.h | 28 nobase_libsubinclude_HEADERS = ssp/ssp.h ssp/string.h ssp/stdio.h ssp/unistd.h |
| 29 | 29 |
| 30 libssp_la_SOURCES = \ | 30 libssp_la_SOURCES = \ |
| 31 ssp.c gets-chk.c memcpy-chk.c memmove-chk.c mempcpy-chk.c \ | 31 ssp.c gets-chk.c memcpy-chk.c memmove-chk.c mempcpy-chk.c \ |
| 32 memset-chk.c snprintf-chk.c sprintf-chk.c stpcpy-chk.c \ | 32 memset-chk.c snprintf-chk.c sprintf-chk.c stpcpy-chk.c \ |
| 33 strcat-chk.c strcpy-chk.c strncat-chk.c strncpy-chk.c \ | 33 strcat-chk.c strcpy-chk.c strncat-chk.c strncpy-chk.c \ |
| 34 vsnprintf-chk.c vsprintf-chk.c | 34 vsnprintf-chk.c vsprintf-chk.c |
| 35 libssp_la_LIBADD = | 35 libssp_la_LIBADD = |
| 36 libssp_la_DEPENDENCIES = $(version_dep) $(libssp_la_LIBADD) | 36 libssp_la_DEPENDENCIES = $(version_dep) $(libssp_la_LIBADD) |
| 37 libssp_la_LDFLAGS = -version-info `grep -v '^\#' $(srcdir)/libtool-version` \ | 37 libssp_la_LDFLAGS = -version-info `grep -v '^\#' $(srcdir)/libtool-version` \ |
| 38 » » $(version_arg) -no-undefined | 38 » » $(version_arg) -no-undefined -bindir "$(bindir)" |
| 39 | 39 |
| 40 libssp_nonshared_la_SOURCES = \ | 40 libssp_nonshared_la_SOURCES = \ |
| 41 ssp-local.c | 41 ssp-local.c |
| 42 libssp_nonshared_la_CFLAGS = -prefer-pic | 42 libssp_nonshared_la_CFLAGS = -prefer-pic |
| 43 libssp_nonshared_la_LIBADD = | 43 libssp_nonshared_la_LIBADD = |
| 44 libssp_nonshared_la_DEPENDENCIES = $(libssp_nonshared_la_LIBADD) | 44 libssp_nonshared_la_DEPENDENCIES = $(libssp_nonshared_la_LIBADD) |
| 45 libssp_nonshared_la_LDFLAGS = -static | 45 libssp_nonshared_la_LDFLAGS = -static |
| 46 | 46 |
| 47 | 47 |
| 48 # XXX hack alert | 48 # XXX hack alert |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 83 "CXX=$(CXX)" \ | 83 "CXX=$(CXX)" \ |
| 84 "LD=$(LD)" \ | 84 "LD=$(LD)" \ |
| 85 "LIBCFLAGS=$(LIBCFLAGS)" \ | 85 "LIBCFLAGS=$(LIBCFLAGS)" \ |
| 86 "NM=$(NM)" \ | 86 "NM=$(NM)" \ |
| 87 "PICFLAG=$(PICFLAG)" \ | 87 "PICFLAG=$(PICFLAG)" \ |
| 88 "RANLIB=$(RANLIB)" \ | 88 "RANLIB=$(RANLIB)" \ |
| 89 "DESTDIR=$(DESTDIR)" | 89 "DESTDIR=$(DESTDIR)" |
| 90 | 90 |
| 91 MAKEOVERRIDES= | 91 MAKEOVERRIDES= |
| 92 | 92 |
| 93 # No install-html or install-pdf support in automake yet | |
| 94 .PHONY: install-html install-pdf | |
| 95 install-html: | |
| 96 install-pdf: | |
| 97 | |
| 98 ## ################################################################ | 93 ## ################################################################ |
| 99 | 94 |
| OLD | NEW |