Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
snf-ganeti
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
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
itminedu
snf-ganeti
Commits
968de7fc
Commit
968de7fc
authored
16 years ago
by
Iustin Pop
Browse files
Options
Downloads
Patches
Plain Diff
Fix/enhance makefile rules after the rename
parent
10e37f3b
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Makefile
+19
-15
19 additions, 15 deletions
Makefile
with
19 additions
and
15 deletions
Makefile
+
19
−
15
View file @
968de7fc
HPROGS
=
hbal hn1
HSRCS
:=
$(
filter-out
$(
HPROGS
)
,
$(
wildcard src
/
*
.hs
)
)
HSRCS
:=
$(
wildcard Ganeti/HTools
/
*
.hs
)
HDDIR
=
apidoc
DOCS
=
README.html NEWS.html
# Haskell rules
all
:
hbal hn1
all
:
$(HPROGS)
hn1 hbal
:
Ganeti/HTools/Version.hs
ghc
--make
-O2
-W
$@
README
.html
:
README
$(DOCS)
:
%
.html
:
%
rst2html
$<
$@
doc
:
README.html
doc
:
$(DOCS)
rm
-rf
$(
HDDIR
)
mkdir
-p
$(
HDDIR
)
/
src
cp
hscolour.css
$(
HDDIR
)
/
src
mkdir
-p
$(
HDDIR
)
/
Ganeti/HTools
cp
hscolour.css
$(
HDDIR
)
/
Ganeti/HTools
for
file
in
$(
HSRCS
);
do
\
HsColour
-css
-anchor
\
$$
file
>
$(
HDDIR
)
/
src
/
`
basename
$$
file .hs
`
.html
;
\
$$
file
>
$(
HDDIR
)
/
Ganeti/HTools
/
`
basename
$$
file .hs
`
.html
;
\
done
haddock
--odir
$(
HDDIR
)
--html
--ignore-all-exports
\
-t
htools
-p
haddock-prologue
\
--source-module
=
"
src
/%{MODULE/.//}.html"
\
--source-entity
=
"
src
/%{MODULE/.//}.html#%{NAME}"
\
--source-module
=
"
Ganeti/HTools
/%{MODULE/.//}.html"
\
--source-entity
=
"
Ganeti/HTools
/%{MODULE/.//}.html#%{NAME}"
\
$(
HSRCS
)
clean
:
rm
-f
*
.o hn1 zn1
*
.prof
*
.ps
*
.stat
*
.aux
\
gmon.out
*
.hi README.html TAGS Ganeti/HTools/Version.hs
git describe
>
/dev/null
&&
rm
-f
version
rm
-f
hbal hn1
rm
-f
*
.o
*
.prof
*
.ps
*
.stat
*
.aux
*
.hi
cd
Ganeti/HTools
&&
rm
-f
*
.o
*
.prof
*
.ps
*
.stat
*
.aux
*
.hi
rm
-f
$(
DOCS
)
TAGS Ganeti/HTools/Version.hs
git describe
>
/dev/null 2>&1
&&
rm
-f
version
||
true
version
:
git describe
>
$@
Ganeti/HTools/Version.hs
:
Ganeti/HTools/Version.hs.in version
sed
-e
"s/%ver%/
$$(
cat
../
version
)
/"
<
$<
>
$@
sed
-e
"s/%ver%/
$$(
cat version
)
/"
<
$<
>
$@
dist
:
version
dist
:
version
doc
VN
=
$$(
cat
version|sed
's/^v//'
)
;
\
ANAME
=
"htools-
$$
VN.tar"
;
\
rm
-f
$$
ANAME
$$
ANAME.gz
;
\
...
...
@@ -47,4 +51,4 @@ dist: version
gzip
-v9
$$
ANAME
;
\
tar
tzvf
$$
ANAME.gz
.PHONY
:
all doc clean
hn1
dist
.PHONY
:
all doc clean dist
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