Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Synchronet
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
Main
Synchronet
Commits
8bddcdec
Commit
8bddcdec
authored
1 year ago
by
Rob Swindell
Browse files
Options
Downloads
Patches
Plain Diff
Add 'help' make target to display helpful tips (targets, options)
Fixes issue
#544
parent
fed0dc45
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
src/sbbs3/GNUmakefile
+23
-0
23 additions, 0 deletions
src/sbbs3/GNUmakefile
with
23 additions
and
0 deletions
src/sbbs3/GNUmakefile
+
23
−
0
View file @
8bddcdec
...
...
@@ -16,6 +16,29 @@ SRC_ROOT ?= ${PWD}/..
include
$(SRC_ROOT)/build/Common.gmake
include
extdeps.mk
help
:
@
echo
"Synchronet build targets (multiple may be specified):"
@
echo
" 'all' Build all libraries, utilities, and sbbs (the default)"
@
echo
" 'gitinfo' Build GIT branch and hash information (header) files only"
@
echo
" 'gtkutils' Build graphical (GTK-based) sysop utilities"
ifeq
($(os), linux)
@
echo
" 'setcap' Set port bind capabilities (on Linux only, or use systemd)"
endif
@
echo
@
echo
"Synchronet install/update targets (choose one):"
@
echo
" 'symlinks' Update symbolic links in sbbs/exec directory (recommended)"
@
echo
" 'install' Copy output executable/library files to sbbs/exec directory"
@
echo
" (these targets require either SBBSCTRL or SBBSEXEC environment variable set)"
@
echo
@
echo
"Clean-up targets (beware use with symlinked exec/* files)"
@
echo
" 'clean' Delete output files (see also ../cleanall.sh)"
@
echo
@
echo
"Options:"
@
echo
" 'DEBUG=1' Build output files with debug information"
@
echo
" 'RELEASE=1' Build output files withOUT debug information (the default)"
@
echo
" 'JSLIB=x' Specify an alternate path to libmozjs[185].so"
@
echo
" 'JSINCLUDE=x Specify an alternate Mozilla JS library header path"
UTIL_LDFLAGS
:=
$(
LDFLAGS
)
UTIL_LDFLAGS
+=
$(
SMBLIB_LDFLAGS
)
$(
UIFC-MT_LDFLAGS
)
$(
CIOLIB-MT_LDFLAGS
)
$(
XPDEV_LDFLAGS
)
$(
ENCODE_LDFLAGS
)
CONSOLE_LDFLAGS
+=
$(
LDFLAGS
)
$(
SMBLIB_LDFLAGS
)
$(
XPDEV_LDFLAGS
)
...
...
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