mirror of
https://git.freebsd.org/ports.git
synced 2025-06-08 14:20:33 -04:00
28 lines
767 B
Text
28 lines
767 B
Text
--- Makefile.am.orig 2004-02-23 17:57:28 UTC
|
|
+++ Makefile.am
|
|
@@ -21,20 +21,20 @@
|
|
AUTOMAKE_OPTIONS = foreign
|
|
SUBDIRS = . testsuite
|
|
|
|
-LIBOBJS = @LIBOBJS@
|
|
+LTLIBOBJS = @LTLIBOBJS@
|
|
|
|
-noinst_LIBRARIES = libargp.a
|
|
+lib_LTLIBRARIES = libargp.la
|
|
noinst_PROGRAMS = argp-test
|
|
noinst_HEADERS = argp.h argp-fmtstream.h argp-namefrob.h # argp-comp.h
|
|
|
|
EXTRA_DIST = mempcpy.c strchrnul.c strndup.c Versions
|
|
|
|
# Leaves out argp-fs-xinl.c and argp-xinl.c
|
|
-libargp_a_SOURCES = argp-ba.c argp-eexst.c argp-fmtstream.c \
|
|
+libargp_la_SOURCES = argp-ba.c argp-eexst.c argp-fmtstream.c \
|
|
argp-help.c argp-parse.c argp-pv.c \
|
|
argp-pvh.c
|
|
|
|
-libargp_a_LIBADD = $(LIBOBJS)
|
|
+libargp_la_LIBADD = $(LTLIBOBJS)
|
|
|
|
-argp_test_LDADD = libargp.a
|
|
+argp_test_LDADD = libargp.la
|
|
|