starlit  Check-in [e926621707]

Overview
Comment:unfuck cpio invocations
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: e926621707aba15e0dfdb0c45bb28634a2b9efae3b0a197e99672ef1986e31f3
User & Date: root on 2024-12-19 20:03:47
Other Links: manifest | tags
Context
2025-01-19
19:05
add to lore, add weather data, etc check-in: caec179da9 user: lexi tags: trunk
2024-12-19
20:03
unfuck cpio invocations check-in: e926621707 user: root tags: trunk
2024-05-15
20:37
add chem radiator, add dummy radiator props to underfloor heater, complete (?) unfinished radiator API, fix longstanding LED offset buggery & crash, fix asset filename issue for LEDs, fix broken vector func check-in: 2e501ef0db user: lexi tags: trunk
Changes

Modified makefile from [3b17e07d68] to [13768bd0ee].

     1      1   all: asset-sync doc-sync
     2      2   
     3      3   repo-uri = https://c.hale.su/starlit
            4  +cpio ?= cpio
     4      5   
     5      6   starlit.html: starlit.ct
     6      7   	cortav -y html:fossil-uv "$<" -o "$@"
     7      8   
     8      9   .PHONY: doc-sync
     9     10   doc-sync: starlit.html
    10     11   	fossil uv add "$<"
    11     12   	fossil uv sync
    12     13   
    13     14   asset.cpxz: asset.list $(shell cat asset.list)
    14         -	cpio -o <"$<" | xz >"$@"
           15  +	$(cpio) -o <"$<" | xz >"$@"
    15     16   
    16     17   .PHONY: asset-sync
    17     18   asset-sync: asset.cpxz
    18     19   	fossil uv add "$<"
    19     20   	fossil uv sync
    20     21   
    21     22   .PHONY: unpack
    22     23   unpack:
    23     24   	fossil uv ex asset.cpxz asset.cpxz || curl $(repo-uri)/uv/asset.cpxz -o asset.cpxz
    24         -	xzcat asset.cpxz | cpio -i
           25  +	xzcat asset.cpxz | $(cpio) -id