Toggle navigation
Sign in
web
/
steffers.org
·
Commits
GitLab
Go to group
Project
Activity
Files
Commits
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
0
Labels
Wiki
Forks
Snippets
Network
Download as
Email Patches
Plain Diff
Browse Files
Commit
71f8ad9574eccab571ea634ad74ad4725738140e
Authored by
Georg Hopp
2017-11-11 01:19:08 +0100
1 parent
c796f10f
build: skipped
Some fixes for the build.
Changes
4
Builds
0
Inline
Side-by-side
Showing
4 changed files
with
8 additions
and
2 deletions
Makefile
docker/Makefile
react/Makefile
react/package-lock.json
Makefile
View file @
71f8ad9
...
...
@@ -17,6 +17,7 @@ all: docker
17
17
18
18
$(GOEXE)
:
$(APP_NAME).go
19
19
go install
$(GOPROJECT)
20
+
strip
$@
20
21
21
22
docker
:
react $(GOEXE)
22
23
$(MAKE)
-C
$@
...
...
docker/Makefile
View file @
71f8ad9
...
...
@@ -15,6 +15,7 @@ all: $(LIBS) $(EXE) react Dockerfile
15
15
16
16
$(LIBS)
:
17
17
install -D /lib64/
$
(
notdir
$@
)
$@
18
+
strip
$@
18
19
19
20
$(EXE)
:
20
21
install -D
$(GOEXE)
$@
...
...
react/Makefile
View file @
71f8ad9
...
...
@@ -33,8 +33,12 @@ SOURCES = src/About.css \
33
33
all
:
.buildchk
34
34
35
35
.buildchk
:
$(SOURCES)
36
+
npm install
36
37
npm run build
37
38
touch
$@
38
39
39
40
clean
:
40
-
rm -Rf build/
*
41
+
rm -Rf build
42
+
rm -Rf coverage
43
+
rm -Rf node_modules
44
+
rm -Rf .buildchk
...
...
react/package-lock.json
View file @
71f8ad9
1
1
{
2
-
"name"
:
"
my-app
"
,
2
+
"name"
:
"
steffers.org
"
,
3
3
"version"
:
"0.1.0"
,
4
4
"lockfileVersion"
:
1
,
5
5
"requires"
:
true
,
...
...
Please
register
or
login
to post a comment