Skip to content

Commit 531842d

Browse files
committed
Update Makefile [skip ci]
1 parent cac55cf commit 531842d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,15 +33,15 @@ docker:
3333
docker build --tag hazel .
3434
docker run --rm hazel
3535

36-
install:
37-
$(SC) build --configuration release -Xswiftc -static-stdlib
38-
39-
configure: install
36+
install: build_release
4037
mkdir -p $(CONFIGDIR)
4138
cd .assets && cp -r templates $(CONFIGDIR)
4239
cd .assets/scripts && cp -r completion $(CONFIGDIR)
4340
cp -f $(RELEASEDIR)/Hazel $(BINARYDIR)/hazel
4441

42+
build_release:
43+
$(SC) build --configuration release -Xswiftc -static-stdlib
44+
4545
uninstall:
4646
rm -r $(CONFIGDIR)
4747
rm $(BINARYDIR)/hazel

0 commit comments

Comments
 (0)