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 | 21 | |
22 | 22 | $(BOOTSTRAPNEEDED): |
23 | 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 | 25 | cp -rf $(BOOTSTRAPNAME)/* . |
26 | 26 | rm -rf $(BOOTSTRAPNAME)* |
27 | 27 | |
... | ... | @@ -36,6 +36,6 @@ fonts/robotaur.ttf: |
36 | 36 | unzip robotaur robotaur.ttf -d fonts |
37 | 37 | rm -rf robotaur.zip |
38 | 38 | |
39 | -clean: bootstrapClean | |
39 | +clean: | |
40 | 40 | cd img; make clean |
41 | 41 | rm -rf $(REDIRS) $(BOOTSTRAPNEEDED) $(addprefix fonts/,$(FONTS)) js/jquery.min.js | ... | ... |