Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
L
libxslt
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
OpenVMS
libraries
libxslt
Commits
b943933caa67
Commit
b943933caa67
authored
20 years ago
by
Igor Zlatkovic
Browse files
Options
Downloads
Patches
Plain Diff
make install cleanup
parent
3c71c6e94404
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
win32/Makefile.mingw
+6
-2
6 additions, 2 deletions
win32/Makefile.mingw
win32/Makefile.msvc
+5
-16
5 additions, 16 deletions
win32/Makefile.msvc
with
11 additions
and
18 deletions
win32/Makefile.mingw
+
6
−
2
View file @
b943933c
...
...
@@ -166,7 +166,7 @@
cmd.exe /C
if
exist depends.
*
del depends.
*
cmd.exe /C
if
exist Makefile del Makefile
install
:
all
install
-libs
:
all
cmd.exe /C
if
not exist
$(
INCPREFIX
)
\$
(
XSLT_BASENAME
)
mkdir
$(
INCPREFIX
)
\$
(
XSLT_BASENAME
)
cmd.exe /C
if
not exist
$(
INCPREFIX
)
\$
(
EXSLT_BASENAME
)
mkdir
$(
INCPREFIX
)
\$
(
EXSLT_BASENAME
)
cmd.exe /C
if
not exist
$(
BINPREFIX
)
mkdir
$(
BINPREFIX
)
...
...
@@ -179,5 +179,7 @@
cmd.exe /C copy
$(
BINDIR
)
\$
(
EXSLT_SO
)
$(
SOPREFIX
)
cmd.exe /C copy
$(
BINDIR
)
\$
(
EXSLT_A
)
$(
LIBPREFIX
)
cmd.exe /C copy
$(
BINDIR
)
\$
(
EXSLT_IMP
)
$(
LIBPREFIX
)
install
:
install-libs
cmd.exe /C copy
$(
BINDIR
)
\*
.exe
$(
BINPREFIX
)
...
...
@@ -182,7 +184,9 @@
cmd.exe /C copy
$(
BINDIR
)
\*
.exe
$(
BINPREFIX
)
install-dist
:
install
# This is a target for me, to make a binary distribution. Not for the public use,
# keep your hands off :-)
BDVERSION
=
$(
LIBXSLT_MAJOR_VERSION
)
.
$(
LIBXSLT_MINOR_VERSION
)
.
$(
LIBXSLT_MICRO_VERSION
)
BDPREFIX
=
$(
XSLT_BASENAME
)
-
$(
BDVERSION
)
.win32
bindist
:
all
...
...
@@ -184,9 +188,9 @@
# This is a target for me, to make a binary distribution. Not for the public use,
# keep your hands off :-)
BDVERSION
=
$(
LIBXSLT_MAJOR_VERSION
)
.
$(
LIBXSLT_MINOR_VERSION
)
.
$(
LIBXSLT_MICRO_VERSION
)
BDPREFIX
=
$(
XSLT_BASENAME
)
-
$(
BDVERSION
)
.win32
bindist
:
all
$(
MAKE
)
PREFIX
=
$(
BDPREFIX
)
SOPREFIX
=
$(
BDPREFIX
)
/bin
install
$(
MAKE
)
PREFIX
=
$(
BDPREFIX
)
SOPREFIX
=
$(
BDPREFIX
)
/bin install
-dist
cscript //NoLogo configure.js genreadme
$(
XSLT_BASENAME
)
$(
BDVERSION
)
$(
BDPREFIX
)
\r
eadme.txt
...
...
This diff is collapsed.
Click to expand it.
win32/Makefile.msvc
+
5
−
16
View file @
b943933c
...
...
@@ -167,7 +167,7 @@
if
exist config.
*
del config.
*
if
exist Makefile del Makefile
install
:
all
install
-libs
:
all
if
not exist
$(
INCPREFIX
)
\$
(
XSLT_BASENAME
)
mkdir
$(
INCPREFIX
)
\$
(
XSLT_BASENAME
)
if
not exist
$(
INCPREFIX
)
\$
(
EXSLT_BASENAME
)
mkdir
$(
INCPREFIX
)
\$
(
EXSLT_BASENAME
)
if
not exist
$(
BINPREFIX
)
mkdir
$(
BINPREFIX
)
...
...
@@ -180,6 +180,8 @@
copy
$(
BINDIR
)
\$
(
EXSLT_SO
)
$(
SOPREFIX
)
copy
$(
BINDIR
)
\$
(
EXSLT_A
)
$(
LIBPREFIX
)
copy
$(
BINDIR
)
\$
(
EXSLT_IMP
)
$(
LIBPREFIX
)
install
:
install-libs
copy
$(
BINDIR
)
\*
.exe
$(
BINPREFIX
)
-
copy
$(
BINDIR
)
\*
.pdb
$(
BINPREFIX
)
...
...
@@ -183,23 +185,10 @@
copy
$(
BINDIR
)
\*
.exe
$(
BINPREFIX
)
-
copy
$(
BINDIR
)
\*
.pdb
$(
BINPREFIX
)
install-bindist
:
all
if
not exist
$(
INCPREFIX
)
\$
(
XSLT_BASENAME
)
mkdir
$(
INCPREFIX
)
\$
(
XSLT_BASENAME
)
if
not exist
$(
INCPREFIX
)
\$
(
EXSLT_BASENAME
)
mkdir
$(
INCPREFIX
)
\$
(
EXSLT_BASENAME
)
if
not exist
$(
BINPREFIX
)
mkdir
$(
BINPREFIX
)
if
not exist
$(
LIBPREFIX
)
mkdir
$(
LIBPREFIX
)
copy
$(
XSLT_SRCDIR
)
\*
.h
$(
INCPREFIX
)
\$
(
XSLT_BASENAME
)
copy
$(
EXSLT_SRCDIR
)
\*
.h
$(
INCPREFIX
)
\$
(
EXSLT_BASENAME
)
copy
$(
BINDIR
)
\$
(
XSLT_SO
)
$(
SOPREFIX
)
copy
$(
BINDIR
)
\$
(
XSLT_A
)
$(
LIBPREFIX
)
copy
$(
BINDIR
)
\$
(
XSLT_IMP
)
$(
LIBPREFIX
)
copy
$(
BINDIR
)
\$
(
EXSLT_SO
)
$(
SOPREFIX
)
copy
$(
BINDIR
)
\$
(
EXSLT_A
)
$(
LIBPREFIX
)
copy
$(
BINDIR
)
\$
(
EXSLT_IMP
)
$(
LIBPREFIX
)
copy
$(
BINDIR
)
\*
.exe
$(
BINPREFIX
)
install-dist
:
install
# This is a target for me, to make a binary distribution. Not for the public use,
# keep your hands off :-)
BDVERSION
=
$(
LIBXSLT_MAJOR_VERSION
)
.
$(
LIBXSLT_MINOR_VERSION
)
.
$(
LIBXSLT_MICRO_VERSION
)
BDPREFIX
=
$(
XSLT_BASENAME
)
-
$(
BDVERSION
)
.win32
bindist
:
all
...
...
@@ -200,10 +189,10 @@
# This is a target for me, to make a binary distribution. Not for the public use,
# keep your hands off :-)
BDVERSION
=
$(
LIBXSLT_MAJOR_VERSION
)
.
$(
LIBXSLT_MINOR_VERSION
)
.
$(
LIBXSLT_MICRO_VERSION
)
BDPREFIX
=
$(
XSLT_BASENAME
)
-
$(
BDVERSION
)
.win32
bindist
:
all
$(
MAKE
)
/nologo
PREFIX
=
$(
BDPREFIX
)
SOPREFIX
=
$(
BDPREFIX
)
\b
in
install-
bin
dist
$(
MAKE
)
/nologo
PREFIX
=
$(
BDPREFIX
)
SOPREFIX
=
$(
BDPREFIX
)
\b
in
install-dist
cscript //NoLogo configure.js genreadme
$(
XSLT_BASENAME
)
$(
BDVERSION
)
$(
BDPREFIX
)
\r
eadme.txt
# Makes the compiler output directory.
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment