Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
Lesson Template
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
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
prace-lessons
Lesson Template
Commits
8aa2794c
Commit
8aa2794c
authored
8 years ago
by
Greg Wilson
Browse files
Options
Downloads
Patches
Plain Diff
Looking for FIXME markers
parent
3428a680
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Makefile
+18
-2
18 additions, 2 deletions
Makefile
with
18 additions
and
2 deletions
Makefile
+
18
−
2
View file @
8aa2794c
...
...
@@ -3,7 +3,18 @@ MAKEFILES=Makefile $(wildcard *.mk)
JEKYLL
=
jekyll
DST
=
_site
# Generated files in the order they appear in the navigation menu
# Source files in the order they appear in the navigation menu.
# This does _not_ include files which are typically unmodified.
SRC_FILES
=
\
index.md
\
CONDUCT.md
\
setup.md
\
$(
wildcard _episodes/
*
.md
)
\
reference.md
\
$(
wildcard _extras/
*
.md
)
\
LICENSE.md
# Generated files in the order they appear in the navigation menu.
HTML_FILES
=
\
${
DST
}
/index.html
\
${
DST
}
/conduct/index.html
\
...
...
@@ -39,7 +50,12 @@ clean :
## files : show expected names of generated files for debugging.
files
:
@
echo
${
HTML_FILES
}
@
echo
'source:'
${
SRC_FILES
}
@
echo
'generated:'
${
HTML_FILES
}
## fixme : show FIXME markers embedded in source files.
fixme
:
@
fgrep
-i
-n
FIXME
${
SRC_FILES
}
||
true
## singlepage : build hacky single-page version of material (after 'make site').
singlepage
:
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
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