diff options
Diffstat (limited to 'frikanalen/Makefile')
-rw-r--r-- | frikanalen/Makefile | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/frikanalen/Makefile b/frikanalen/Makefile index 0d9e6ab..5f5009c 100644 --- a/frikanalen/Makefile +++ b/frikanalen/Makefile @@ -2,6 +2,7 @@ DESTDIR = prefix = /usr bindir = $(prefix)/bin cgibindir = $(prefix)/lib/cgi-bin +wwwdir = $(prefix)/share/frikanalen/www INSTALL = install -m755 INSTALL_DATA = install -m644 @@ -16,4 +17,10 @@ install: $(INSTALL) -d $(DESTDIR)$(cgibindir) $(INSTALL) cgi-bin/fetchvideo.cgi cgi-bin/frontpage.cgi $(DESTDIR)$(cgibindir) + $(INSTALL) -d $(DESTDIR)$(wwwdir) + for file in bullet.gif bullet.png hide.js lage-tv.png logo.png meny1.png meny.png \ + om.png se.png style1.css style.css ; do \ + $(INSTALL_DATA) cgi-bin/$$file $(DESTDIR)$(wwwdir)/.; \ + done + clean: |