Check-in [05dbf4d097]
Overview
Comment:Updated to obey "--libdir" configure directive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 05dbf4d097e9186b2abd46a7c16b626b3762c0c8
User & Date: rkeene on 2014-05-02 04:42:33
Other Links: manifest | tags
Context
2014-05-02
05:34
Updated to install required basic headers check-in: 0a6b909b1f user: rkeene tags: trunk
04:42
Updated to obey "--libdir" configure directive check-in: 05dbf4d097 user: rkeene tags: trunk
04:31
Updated correctly build static/shared based on --enable-static check-in: bc1a8ee8dd user: rkeene tags: trunk
Changes

Modified Makefile.in from [67523e2b58] to [05b26b611a].







1
2
3
4
5
6
7
8
9

10
11
12
13


14
15
16
17
18
19
20
21
22






CC = @CC@
AR = @AR@
RANLIB = @RANLIB@
CFLAGS = @CFLAGS@ @SHOBJFLAGS@
CPPFLAGS = @CPPFLAGS@ -I@srcdir@ -I@srcdir@/tcc -Itcc @DEFS@
LDFLAGS =
SHOBJLDFLAGS = @SHOBJLDFLAGS@
LIBS = @LIBS@
INSTALL = @INSTALL@

PACKAGE_NAME = @PACKAGE_NAME@
PACKAGE_VERSION = @PACKAGE_VERSION@
TCL_PACKAGE_PATH = @TCL_PACKAGE_PATH@
TCLCONFIGPATH = @TCLCONFIGPATH@


PACKAGE_INSTALL_DIR = $(TCL_PACKAGE_PATH)/$(PACKAGE_NAME)-$(PACKAGE_VERSION)
TARGETS = @TARGETS@
TCC_CONFIGURE_OPTS = --extra-cflags='$(CPPFLAGS) $(CFLAGS)' --with-tcl=$(TCLCONFIGPATH)
srcdir = @srcdir@

all: $(TARGETS)

tcc/config.h:
	if [ "$(srcdir)" = "." ]; then \
>
>
>
>
>
>









>


|

>
>
|
<







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
prefix = UNSPECIFIED
exec_prefix = @exec_prefix@
libdir = @libdir@

TARGETS = @TARGETS@

CC = @CC@
AR = @AR@
RANLIB = @RANLIB@
CFLAGS = @CFLAGS@ @SHOBJFLAGS@
CPPFLAGS = @CPPFLAGS@ -I@srcdir@ -I@srcdir@/tcc -Itcc @DEFS@
LDFLAGS =
SHOBJLDFLAGS = @SHOBJLDFLAGS@
LIBS = @LIBS@
INSTALL = @INSTALL@

PACKAGE_NAME = @PACKAGE_NAME@
PACKAGE_VERSION = @PACKAGE_VERSION@

TCLCONFIGPATH = @TCLCONFIGPATH@
TCL_PACKAGE_PATH = @TCL_PACKAGE_PATH@
tcllibdir = $(shell if echo "$(libdir)" | grep '^UNSPECIFIED' >/dev/null; then echo $(TCL_PACKAGE_PATH); else echo "$(libdir)"; fi)
PACKAGE_INSTALL_DIR = $(tcllibdir)/$(PACKAGE_NAME)-$(PACKAGE_VERSION)

TCC_CONFIGURE_OPTS = --extra-cflags='$(CPPFLAGS) $(CFLAGS)' --with-tcl=$(TCLCONFIGPATH)
srcdir = @srcdir@

all: $(TARGETS)

tcc/config.h:
	if [ "$(srcdir)" = "." ]; then \