From bb646afe42345c405706786108741d5d5fd4798a Mon Sep 17 00:00:00 2001 From: Lucas Fryzek Date: Fri, 20 Jan 2023 23:04:05 -0500 Subject: Fix build issues --- html/feed.xml | 2 +- html/index.html | 2 +- makefile | 8 +++++--- 3 files changed, 7 insertions(+), 5 deletions(-) diff --git a/html/feed.xml b/html/feed.xml index 5716b68..9d2e9b1 100644 --- a/html/feed.xml +++ b/html/feed.xml @@ -1,2 +1,2 @@ -Fryzek Conceptshttps://fryzekconcepts.comLucas is a developer working on cool thingsSat, 21 Jan 2023 03:57:34 -0000Generating Videohttps://fryzekconcepts.com/notes/generating-videoOne thing I’m very interested in is computer graphics. This could be complex 3D graphics or 2DSun, 30 Oct 2022 04:00:00 -0000https://fryzekconcepts.com/notes/generating-videoN64Brew GameJam 2021https://fryzekconcepts.com/notes/n64brew-gamejam-2021So this year myself and two others decided to participate together in the N64Brew homebrew whereSun, 30 Oct 2022 04:00:00 -0000https://fryzekconcepts.com/notes/n64brew-gamejam-2021Baremetal RISC-Vhttps://fryzekconcepts.com/notes/baremetal-risc-vAfter re-watching suckerpinch’s Reverse Emulation video I got inspired to try and replicate whatSun, 30 Oct 2022 04:00:00 -0000https://fryzekconcepts.com/notes/baremetal-risc-vDigital Gardenhttps://fryzekconcepts.com/notes/digital_gardenAfter reading Maggie Appleton page on digital gardens I was inspired to convert my own website intoSun, 30 Oct 2022 04:00:00 -0000https://fryzekconcepts.com/notes/digital_gardenRasterizing Triangleshttps://fryzekconcepts.com/notes/rasterizing-trianglesLately I’ve been trying to implement a software renderer following the algorithm described bySun, 30 Oct 2022 04:00:00 -0000https://fryzekconcepts.com/notes/rasterizing-triangles \ No newline at end of file +Fryzek Conceptshttps://fryzekconcepts.comLucas is a developer working on cool thingsSat, 21 Jan 2023 04:03:36 -0000Generating Videohttps://fryzekconcepts.com/notes/generating-videoOne thing I’m very interested in is computer graphics. This could be complex 3D graphics or 2DSun, 30 Oct 2022 04:00:00 -0000https://fryzekconcepts.com/notes/generating-videoN64Brew GameJam 2021https://fryzekconcepts.com/notes/n64brew-gamejam-2021So this year myself and two others decided to participate together in the N64Brew homebrew whereSun, 30 Oct 2022 04:00:00 -0000https://fryzekconcepts.com/notes/n64brew-gamejam-2021Baremetal RISC-Vhttps://fryzekconcepts.com/notes/baremetal-risc-vAfter re-watching suckerpinch’s Reverse Emulation video I got inspired to try and replicate whatSun, 30 Oct 2022 04:00:00 -0000https://fryzekconcepts.com/notes/baremetal-risc-vDigital Gardenhttps://fryzekconcepts.com/notes/digital_gardenAfter reading Maggie Appleton page on digital gardens I was inspired to convert my own website intoSun, 30 Oct 2022 04:00:00 -0000https://fryzekconcepts.com/notes/digital_gardenRasterizing Triangleshttps://fryzekconcepts.com/notes/rasterizing-trianglesLately I’ve been trying to implement a software renderer following the algorithm described bySun, 30 Oct 2022 04:00:00 -0000https://fryzekconcepts.com/notes/rasterizing-triangles \ No newline at end of file diff --git a/html/index.html b/html/index.html index 6ff7569..7e44285 100644 --- a/html/index.html +++ b/html/index.html @@ -38,7 +38,7 @@

Notes - +

diff --git a/makefile b/makefile index 80ba4fc..eb45742 100644 --- a/makefile +++ b/makefile @@ -33,16 +33,17 @@ $(HTML_DIR)/%.html: $(PAGE_DIR)/%.md -M main_container="main-container-page" \ -o $@ -html/feed.xml: $(META_DOCS) +$(HTML_DIR)/feed.xml: $(META_DOCS) ./tools/rss_gen.py -$(HTML_DIR)/index.html: $(HTML_DOCS) $(PAGE_FILES) html/feed.xml +$(HTML_DIR)/index.html: $(HTML_DOCS) $(PAGE_FILES) $(HTML_DIR)/feed.xml touch $(HTML_DIR)/.nojekyll pandoc -s --lua-filter=./tools/front_page.lua --template=./templates/main.html main.md \ --metadata=note_list:"$(SOURCE_FILES)" \ -o $@ .PHONY: all clean +.DEFAULT_GOAL := all all: $(HTML_DIR)/index.html @@ -50,5 +51,6 @@ deploy: all git subtree push --prefix html origin gh-pages clean: - rm -r build + rm -rf build find html -name "*.html" -type f -delete + find html -name "*.xml" -type f -delete -- cgit v1.2.3