1
0
mirror of https://gitlab.xiph.org/xiph/icecast-server.git synced 2024-06-16 06:15:24 +00:00

Simplify web makefiles

This commit is contained in:
Marvin Scholz 2018-05-28 18:28:03 +02:00
parent 39a0ca8491
commit e7599f6fe5
5 changed files with 27 additions and 44 deletions

View File

@ -228,9 +228,6 @@ AC_CONFIG_FILES([
src/common/timing/Makefile
doc/Makefile
web/Makefile
web/assets/Makefile
web/assets/css/Makefile
web/assets/font/Makefile
admin/Makefile
admin/includes/Makefile
win32/Makefile

View File

@ -1,15 +1,31 @@
## Process this file with automake to produce Makefile.in
webdir = $(pkgdatadir)/web
web_DATA = status.xsl \
favicon.ico \
icecast.png \
style.css \
auth.xsl \
server_version.xsl \
tunein.png \
key.png \
status-json.xsl \
xml2json.xslt
EXTRA_DIST = $(web_DATA)
nobase_web_DATA = \
status.xsl \
favicon.ico \
icecast.png \
style.css \
auth.xsl \
server_version.xsl \
tunein.png \
key.png \
status-json.xsl \
xml2json.xslt \
assets/css/style.css \
assets/font/FiraMono-Bold.eot \
assets/font/FiraMono-Regular.eot \
assets/font/FiraSans-Bold.eot \
assets/font/FiraSans-BoldItalic.woff \
assets/font/FiraSans-Italic.eot \
assets/font/FiraSans-Regular.eot \
assets/font/FiraMono-Bold.woff \
assets/font/FiraMono-Regular.woff \
assets/font/FiraSans-BoldItalic.eot \
assets/font/FiraSans-Bold.woff \
assets/font/FiraSans-Italic.woff \
assets/font/FiraSans-Regular.woff
EXTRA_DIST = $(nobase_web_DATA)

View File

@ -1,5 +0,0 @@
## Process this file with automake to produce Makefile.in
AUTOMAKE_OPTIONS = foreign
SUBDIRS = css font

View File

@ -1,10 +0,0 @@
## Process this file with automake to produce Makefile.in
AUTOMAKE_OPTIONS = foreign
webdir = $(pkgdatadir)/web
otherwebdir = $(webdir)/assets/css
otherweb_DATA = style.css
EXTRA_DIST = $(otherweb_DATA)

View File

@ -1,15 +0,0 @@
## Process this file with automake to produce Makefile.in
AUTOMAKE_OPTIONS = foreign
webdir = $(pkgdatadir)/web
otherwebdir = $(webdir)/assets/font
otherweb_DATA = FiraMono-Bold.eot FiraMono-Regular.eot \
FiraSans-Bold.eot FiraSans-BoldItalic.woff \
FiraSans-Italic.eot FiraSans-Regular.eot \
FiraMono-Bold.woff FiraMono-Regular.woff \
FiraSans-BoldItalic.eot FiraSans-Bold.woff \
FiraSans-Italic.woff FiraSans-Regular.woff
EXTRA_DIST = $(otherweb_DATA)