Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
V
Vereign Client Library
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
Container registry
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
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Code
Vereign Client Library
Commits
09b1babd
Commit
09b1babd
authored
6 years ago
by
Markin Igor
Browse files
Options
Downloads
Patches
Plain Diff
Remove binary building stage from Makefile.
parent
1d076ae8
No related branches found
No related tags found
1 merge request
!4
Use webpack for bundling JS libs and move Golang code related to Iframe generation there
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Makefile
+0
-15
0 additions, 15 deletions
Makefile
with
0 additions
and
15 deletions
Makefile
+
0
−
15
View file @
09b1babd
SERVER_OUT
:=
"bin/server"
PKG
:=
"code.vereign.com/code/vcl"
SERVER_PKG_BUILD
:=
"
${
PKG
}
"
PKG_LIST
:=
$(
shell go list
${
PKG
}
/... |
grep
-v
/vendor/
)
.PHONY
:
all api server
all
:
server
dep
:
##
Get the dependencies
dep ensure
cd
javascript
&&
yarn
install
&&
yarn build
server
:
dep
##
Build the binary file for server
@
go build
-i
-v
-o
$(
SERVER_OUT
)
$(
SERVER_PKG_BUILD
)
clean
:
##
Remove previous builds
@
rm
$(
SERVER_OUT
)
help
:
##
Display this help screen
@
grep
-E
'^[a-zA-Z_-]+:.*?## .*$$'
$(
MAKEFILE_LIST
)
|
sort
|
awk
'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
...
...
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