Commit 3686bf941cc959f752aa94abbade448b96142b1a
1 parent
74e56c39
Main makefile linked to vid makefile
Showing
1 changed file
with
3 additions
and
1 deletions
Show diff stats
Makefile
... | ... | @@ -7,6 +7,7 @@ BOOTSTRAPNAME=bootstrap-$(BOOTSTRAPVER)-dist |
7 | 7 | |
8 | 8 | all: redirs $(BOOTSTRAPNEEDED) js/jquery.min.js js/konami.js $(addprefix fonts/,$(FONTS)) |
9 | 9 | cd img; make |
10 | + cd vid; make | |
10 | 11 | |
11 | 12 | # Redirs |
12 | 13 | %.php: pages/%.php |
... | ... | @@ -31,7 +32,7 @@ fonts/robotech-gp.ttf: |
31 | 32 | wget http://dl.dafont.com/dl/?f=robotech_gp -O robotech_gp.zip |
32 | 33 | unzip robotech_gp.zip ROBOTECH\ GP.ttf |
33 | 34 | mv ROBOTECH\ GP.ttf $@ |
34 | - rm -rf robotech_gp.zip ROBOTECH\ GP.ttf | |
35 | + rm -rf robotech_gp.zip ROBOTECH\ GP.ttf | |
35 | 36 | |
36 | 37 | fonts/robotaur.ttf: |
37 | 38 | wget http://dl.dafont.com/dl/?f=robotaur -O robotaur.zip |
... | ... | @@ -40,4 +41,5 @@ fonts/robotaur.ttf: |
40 | 41 | |
41 | 42 | clean: |
42 | 43 | cd img; make clean |
44 | + cd vid; make clean | |
43 | 45 | rm -rf $(BOOTSTRAPNEEDED) $(addprefix fonts/,$(FONTS)) js/jquery.min.js | ... | ... |