comparison lib/argp-standalone/patch-Makefile.am.patch @ 618:a9b53729d91b

lib/argp-standalone: build shared library (thanks to FreeBSD)
author David Demelier <markand@malikania.fr>
date Tue, 23 Jul 2019 20:20:00 +0200
parents
children
comparison
equal deleted inserted replaced
617:996230e6b946 618:a9b53729d91b
1 --- Makefile.am.orig 2004-02-23 17:57:28 UTC
2 +++ Makefile.am
3 @@ -21,20 +21,20 @@
4 AUTOMAKE_OPTIONS = foreign
5 SUBDIRS = . testsuite
6
7 -LIBOBJS = @LIBOBJS@
8 +LTLIBOBJS = @LTLIBOBJS@
9
10 -noinst_LIBRARIES = libargp.a
11 +lib_LTLIBRARIES = libargp.la
12 noinst_PROGRAMS = argp-test
13 noinst_HEADERS = argp.h argp-fmtstream.h argp-namefrob.h # argp-comp.h
14
15 EXTRA_DIST = mempcpy.c strchrnul.c strndup.c Versions
16
17 # Leaves out argp-fs-xinl.c and argp-xinl.c
18 -libargp_a_SOURCES = argp-ba.c argp-eexst.c argp-fmtstream.c \
19 +libargp_la_SOURCES = argp-ba.c argp-eexst.c argp-fmtstream.c \
20 argp-help.c argp-parse.c argp-pv.c \
21 argp-pvh.c
22
23 -libargp_a_LIBADD = $(LIBOBJS)
24 +libargp_la_LIBADD = $(LTLIBOBJS)
25
26 -argp_test_LDADD = libargp.a
27 +argp_test_LDADD = libargp.la
28