]> git.ipfire.org Git - ipfire.org.git/blobdiff - Makefile.am
Ship local copy of hwdata module
[ipfire.org.git] / Makefile.am
index 7d84d27e249846bf72a5f3bdc832119960477a7e..2cac0644902f9d0652fb3ed56a523ace0d407a49 100644 (file)
@@ -56,7 +56,9 @@ backend_PYTHON = \
        src/backend/decorators.py \
        src/backend/fireinfo.py \
        src/backend/geoip.py \
+       src/backend/hwdata.py \
        src/backend/iuse.py \
+       src/backend/memcached.py \
        src/backend/mirrors.py \
        src/backend/misc.py \
        src/backend/netboot.py \
@@ -64,8 +66,8 @@ backend_PYTHON = \
        src/backend/releases.py \
        src/backend/settings.py \
        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 +80,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 +90,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,14 +101,16 @@ webdir = $(backenddir)/web
 
 templates_DATA = \
        src/templates/base.html \
-       src/templates/donate.html \
        src/templates/error.html \
        src/templates/index.html
 
 templatesdir = $(datadir)/templates
 
 templates_auth_DATA = \
-       src/templates/auth/login.html
+       src/templates/auth/activate.html \
+       src/templates/auth/login.html \
+       src/templates/auth/register.html \
+       src/templates/auth/register-success.html
 
 templates_authdir = $(templatesdir)/auth
 
@@ -132,6 +138,13 @@ 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
 
@@ -141,12 +154,9 @@ templates_fireinfo_DATA = \
        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/stats-cpus-detail.html \
-       src/templates/fireinfo/stats-cpus.html \
-       src/templates/fireinfo/stats-geo.html \
-       src/templates/fireinfo/stats.html \
        src/templates/fireinfo/vendor.html \
        src/templates/fireinfo/vendors.html
 
@@ -154,12 +164,13 @@ templates_fireinfodir = $(templatesdir)/fireinfo
 
 templates_fireinfo_modules_DATA = \
        src/templates/fireinfo/modules/table-devices-and-groups.html \
-       src/templates/fireinfo/modules/table-devices.html \
-       src/templates/fireinfo/modules/table-geo.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
@@ -246,6 +257,29 @@ 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_files_DATA = \
+       src/templates/wiki/files/detail.html \
+       src/templates/wiki/files/index.html
+
+templates_wiki_filesdir = $(templates_wikidir)/files
+
+templates_wiki_modules_DATA = \
+       src/templates/wiki/modules/list.html \
+       src/templates/wiki/modules/navbar.html
+
+templates_wiki_modulesdir = $(templates_wikidir)/modules
+
 # ------------------------------------------------------------------------------
 
 SCSS_FILES = \
@@ -264,10 +298,12 @@ 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
 
@@ -926,6 +962,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 $< > $@