]> git.ipfire.org Git - ipfire.org.git/blobdiff - Makefile.am
CSS: Add file with only fonts
[ipfire.org.git] / Makefile.am
index a5a73d0b45d3ef44eb289cceb121bdd9cfb0ec84..6fe92dd2ffa17e0051a8f4dea1ab0cf57a77fe53 100644 (file)
@@ -66,6 +66,7 @@ backend_PYTHON = \
        src/backend/talk.py \
        src/backend/tracker.py \
        src/backend/util.py \
+       src/backend/wiki.py \
        src/backend/zeiterfassung.py
 
 backenddir = $(pythondir)/ipfire
@@ -78,6 +79,7 @@ web_PYTHON = \
        src/web/base.py \
        src/web/blog.py \
        src/web/boot.py \
+       src/web/donate.py \
        src/web/download.py \
        src/web/fireinfo.py \
        src/web/handlers.py \
@@ -87,7 +89,8 @@ web_PYTHON = \
        src/web/newsletter.py \
        src/web/nopaste.py \
        src/web/people.py \
-       src/web/ui_modules.py
+       src/web/ui_modules.py \
+       src/web/wiki.py
 
 webdir = $(backenddir)/web
 
@@ -97,7 +100,6 @@ webdir = $(backenddir)/web
 
 templates_DATA = \
        src/templates/base.html \
-       src/templates/donate.html \
        src/templates/error.html \
        src/templates/index.html
 
@@ -132,17 +134,39 @@ templates_blog_modules_DATA = \
 
 templates_blog_modulesdir = $(templates_blogdir)/modules
 
+templates_donate_DATA = \
+       src/templates/donate/donate.html \
+       src/templates/donate/error.html \
+       src/templates/donate/thank-you.html
+
+templates_donatedir = $(templatesdir)/donate
+
 templates_download_DATA = \
        src/templates/download/release.html
 
 templates_downloaddir = $(templatesdir)/download
 
 templates_fireinfo_DATA = \
-       src/templates/fireinfo/i-use-1.png
+       src/templates/fireinfo/driver.html \
+       src/templates/fireinfo/index.html \
+       src/templates/fireinfo/i-use-1.png \
+       src/templates/fireinfo/processors.html \
+       src/templates/fireinfo/profile.html \
+       src/templates/fireinfo/releases.html \
+       src/templates/fireinfo/vendor.html \
+       src/templates/fireinfo/vendors.html
 
 templates_fireinfodir = $(templatesdir)/fireinfo
 
+templates_fireinfo_modules_DATA = \
+       src/templates/fireinfo/modules/table-devices-and-groups.html \
+       src/templates/fireinfo/modules/table-devices.html
+
+templates_fireinfo_modulesdir = $(templates_fireinfodir)/modules
+
 templates_location_DATA = \
+       src/templates/location/base.html \
+       src/templates/location/blacklists.html \
        src/templates/location/lookup.html
 
 templates_locationdir = $(templatesdir)/location
@@ -154,7 +178,8 @@ templates_mirrors_DATA = \
 templates_mirrorsdir = $(templatesdir)/mirrors
 
 templates_modules_DATA = \
-       src/templates/modules/map.html
+       src/templates/modules/map.html \
+       src/templates/modules/progress-bar.html
 
 templates_modulesdir = $(templatesdir)/modules
 
@@ -228,6 +253,23 @@ templates_static_DATA = \
 
 templates_staticdir = $(templatesdir)/static
 
+templates_wiki_DATA = \
+       src/templates/wiki/404.html \
+       src/templates/wiki/base.html \
+       src/templates/wiki/edit.html \
+       src/templates/wiki/page.html \
+       src/templates/wiki/recent-changes.html \
+       src/templates/wiki/revisions.html \
+       src/templates/wiki/search-results.html
+
+templates_wikidir = $(templatesdir)/wiki
+
+templates_wiki_modules_DATA = \
+       src/templates/wiki/modules/list.html \
+       src/templates/wiki/modules/navbar.html
+
+templates_wiki_modulesdir = $(templates_wikidir)/modules
+
 # ------------------------------------------------------------------------------
 
 SCSS_FILES = \
@@ -237,6 +279,7 @@ SCSS_FILES = \
        src/scss/_variables.scss
 
 EXTRA_DIST += \
+       src/scss/listing.scss \
        src/templates/messages/main.scss
 
 CLEANFILES += \
@@ -245,9 +288,13 @@ CLEANFILES += \
 static_DATA = \
        src/static/favicon.ico \
        src/static/robots.txt \
+       src/scss/fonts.css \
+       src/scss/listing.css \
        src/scss/main.css
 
 CLEANFILES += \
+       src/scss/fonts.css \
+       src/scss/listing.css \
        src/scss/main.css
 
 EXTRA_DIST += \
@@ -905,6 +952,10 @@ SED_PROCESS = \
 %: %.in Makefile
        $(SED_PROCESS)
 
+%.css: _%.scss Makefile
+       $(AM_V_GEN)$(MKDIR_P) $(dir $@) && \
+               $(SASSC) --style compressed $< > $@
+
 %.css: %.scss Makefile
        $(AM_V_GEN)$(MKDIR_P) $(dir $@) && \
                $(SASSC) --style compressed $< > $@