File: Makefile.am

package info (click to toggle)
hercules 3.13-9
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 14,392 kB
  • sloc: ansic: 175,124; sh: 8,792; makefile: 760; perl: 149
file content (58 lines) | stat: -rw-r--r-- 1,208 bytes parent folder | download | duplicates (5)
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
## Process this file with automake to produce Makefile.in
#
# Makefile for building the SoftFloat package
# for use with Hercules S/370, ESA/390 and z/Architecture emulator
#
# This file was added by the Hercules project.
# It is not part of the original SoftFloat distribution.
#

lns=@LN_S@

LDADD = @LIBS@ 

AM_CPPFLAGS = -I$(top_srcdir)

softfloat_SRC = softfloat.c

if BUILD_SHARED
   XSTATIC =
else
   XSTATIC = -static
endif

if OPTION_DYNAMIC_LOAD
  LTDL  	 = ../ltdl.c
  LIB_LD_FLAGS    = -export-dynamic  \
		   $(XSTATIC)       \
		   -no-undefined    \
		   -avoid-version
else
  LTDL  	 =
  LIB_LD_FLAGS    = $(XSTATIC)    \
		   -no-undefined \
		   -avoid-version
endif

  HERCLIBS =
  HERCLIBS2 = libsoftfloat.la
  noinst_LTLIBRARIES = $(HERCLIBS)
  lib_LTLIBRARIES = $(HERCLIBS2)

  libsoftfloat_la_SOURCES = $(softfloat_SRC)
  libsoftfloat_la_LDFLAGS = $(LIB_LD_FLAGS)
  libsoftfloat_la_LIBADD  = $(LDADD)

noinst_HEADERS = milieu.h          \
		 processor.h       \
		 softfloat.h       \
		 softfloat-macros  \
		 softfloat-specialize

EXTRA_DIST = README.txt            \
	     SoftFloat.txt         \
	     SoftFloat-history.txt \
	     SoftFloat-source.txt

%.s: %.c
	$(COMPILE) -S $<