File: Makefile.am

package info (click to toggle)
gnucash 2.0.5-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 58,168 kB
  • ctags: 31,733
  • sloc: ansic: 300,644; lisp: 36,002; sh: 18,499; makefile: 6,158; xml: 1,391; perl: 829; sql: 558
file content (26 lines) | stat: -rw-r--r-- 792 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
noinst_LTLIBRARIES = libc-missing.la

# All header files must be listed.
noinst_HEADERS = \
  localtime_r.h setenv.h strptime.h

# No sources should be listed.
libc_missing_la_SOURCES = libc-missing-noop.c

EXTRA_libc_missing_la_SOURCES = localtime_r.c setenv.c strptime.c

# This will automatically be filled in with the necessary object file
# names.  Configure does this based upon the AC_REPLACE_FUNCS macros.
LIBOBJS = @LIBOBJS@
LTLIBOBJS = $(shell echo "$(LIBOBJS)" | sed '@LIBOBJS_SEDSCRIPT@' | \
	sed 's,\.[^.]* ,.lo ,g;s,\.[^.]*$$,.lo,')

libc_missing_la_LIBADD = $(LTLIBOBJS)

# Not currently used.  If added to AC_REPLACE_FUNCS then this line
# should be removed.
EXTRA_DIST = scm_strptime.c

print_libobjs: Makefile
	@echo "LIBOBJS = $(LIBOBJS)"
	@echo "LTLIBOBJS = $(LTLIBOBJS)"