Skip to content

Commit ef6b04a

Browse files
committed
Fix make
1 parent bc8fb37 commit ef6b04a

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

Makefile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ BINDATA_DEST := modules/public/bindata.go modules/options/bindata.go modules/tem
5656

5757
JS_DEST_DIR := public/js
5858
CSS_DEST_DIR := public/css
59+
FOMANTIC_DEST_DIR := public/fomantic
5960

6061
TAGS ?=
6162

@@ -112,7 +113,7 @@ node-check:
112113

113114
.PHONY: clean-all
114115
clean-all: clean
115-
rm -rf $(JS_DEST_DIR) $(CSS_DEST_DIR)
116+
rm -rf $(JS_DEST_DIR) $(CSS_DEST_DIR) $(FOMANTIC_DEST_DIR)
116117

117118
.PHONY: clean
118119
clean:
@@ -463,7 +464,7 @@ $(JS_DEST): node_modules $(JS_SOURCES)
463464
npx webpack
464465

465466
.PHONY: fomantic
466-
fomantic:
467+
fomantic: node-check node_modules
467468
cd web_src/fomantic && npx gulp build
468469

469470
.PHONY: css

0 commit comments

Comments
 (0)