Trailing asterisks indicate books I've finished reading
Libre:
- Public Domain
- https://www.gutenberg.org/ebooks/863
| .PHONY: all clean fclean re | |
| CC = zig cc | |
| # `zig cc` passes `-fsanitize=undefined` by default. | |
| CFLAGS = -Wall -Wextra -Werror -Wconversion #-fsanitize=undefined | |
| SRC = main.c | |
| OBJ = $(SRC:.c=.o) zig.o | |
| demo : $(OBJ) |
| Computer Information: | |
| Manufacturer: Valve | |
| Model: Galileo | |
| Form Factor: Laptop | |
| No Touch Input Detected | |
| Processor Information: | |
| CPU Vendor: AuthenticAMD | |
| CPU Brand: AMD Custom APU 0932 | |
| CPU Family: 0x17 | |
| CPU Model: 0x91 |
Trailing asterisks indicate books I've finished reading
Libre:
| # A simple shell expression for running Lenna's Inception | |
| # Put this in the same directory as the game and run `nix develop` | |
| { | |
| description = "FHS setup for Lenna's Inception"; | |
| outputs = { self, nixpkgs }: | |
| let | |
| pkgs = import nixpkgs { inherit system; }; | |
| system = "x86_64-linux"; |