Commit 2b08a86da3ab59f9fbdc0009fa724b07d58d1150
1 parent
46b708ad
Fix bootstrap making
Showing
1 changed file
with
2 additions
and
2 deletions
Show diff stats
Makefile
@@ -21,7 +21,7 @@ js/jquery.min.js: | @@ -21,7 +21,7 @@ js/jquery.min.js: | ||
21 | 21 | ||
22 | $(BOOTSTRAPNEEDED): | 22 | $(BOOTSTRAPNEEDED): |
23 | wget https://github.com/twbs/bootstrap/releases/download/v$(BOOTSTRAPVER)/$(BOOTSTRAPNAME).zip -O $(BOOTSTRAPNAME).zip | 23 | wget https://github.com/twbs/bootstrap/releases/download/v$(BOOTSTRAPVER)/$(BOOTSTRAPNAME).zip -O $(BOOTSTRAPNAME).zip |
24 | - unzip $(BOOTSTRAPNAME).zip $(addprefix $(BOOTSTRAPNAME),$(BOOTSTRAPNEEDED)) | 24 | + unzip $(BOOTSTRAPNAME).zip $(addprefix $(BOOTSTRAPNAME)/,$(BOOTSTRAPNEEDED)) |
25 | cp -rf $(BOOTSTRAPNAME)/* . | 25 | cp -rf $(BOOTSTRAPNAME)/* . |
26 | rm -rf $(BOOTSTRAPNAME)* | 26 | rm -rf $(BOOTSTRAPNAME)* |
27 | 27 | ||
@@ -36,6 +36,6 @@ fonts/robotaur.ttf: | @@ -36,6 +36,6 @@ fonts/robotaur.ttf: | ||
36 | unzip robotaur robotaur.ttf -d fonts | 36 | unzip robotaur robotaur.ttf -d fonts |
37 | rm -rf robotaur.zip | 37 | rm -rf robotaur.zip |
38 | 38 | ||
39 | -clean: bootstrapClean | 39 | +clean: |
40 | cd img; make clean | 40 | cd img; make clean |
41 | rm -rf $(REDIRS) $(BOOTSTRAPNEEDED) $(addprefix fonts/,$(FONTS)) js/jquery.min.js | 41 | rm -rf $(REDIRS) $(BOOTSTRAPNEEDED) $(addprefix fonts/,$(FONTS)) js/jquery.min.js |