Skip to content

Commit

Permalink
Fix installing new luma files.
Browse files Browse the repository at this point in the history
  • Loading branch information
ddennedy committed Dec 15, 2018
1 parent 79371c5 commit 2cd73ee
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions src/modules/lumas/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,19 @@ create_lumas:
depend:

distclean:
rm -rf PAL NTSC luma
rm -rf luma 9_16 16_9 NTSC PAL square

clean:
rm -f luma

install: all
install -d $(DESTDIR)$(mltdatadir)/lumas/PAL
install -d $(DESTDIR)$(mltdatadir)/lumas/9_16
install -d $(DESTDIR)$(mltdatadir)/lumas/16_9
install -d $(DESTDIR)$(mltdatadir)/lumas/NTSC
install -m 644 PAL/* $(DESTDIR)$(mltdatadir)/lumas/PAL
install -d $(DESTDIR)$(mltdatadir)/lumas/PAL
install -d $(DESTDIR)$(mltdatadir)/lumas/square
install -m 644 9_16/* $(DESTDIR)$(mltdatadir)/lumas/9_16
install -m 644 16_9/* $(DESTDIR)$(mltdatadir)/lumas/16_9
install -m 644 NTSC/* $(DESTDIR)$(mltdatadir)/lumas/NTSC
install -m 644 PAL/* $(DESTDIR)$(mltdatadir)/lumas/PAL
install -m 644 square/* $(DESTDIR)$(mltdatadir)/lumas/square

0 comments on commit 2cd73ee

Please sign in to comment.