3.5kg fruit, ~50:50 elderberries and blackberries.
2.1kg sugar
# CC = gcc # Optional. Will use system default if not given here e.g. gcc or clang. | |
CFLAGS = -g -Wall -fanalyzer $(shell pkg-config --cflags openssl) | |
LIBS=$(shell pkg-config --libs openssl) | |
LDFLAGS = $(LIBS) | |
bins = decrypt_file encrypt_file | |
all: $(bins) | |
clean: | |
@for file in $(bins); do \ |
# Another simple make example. Creates 2 bins which include the same c file. | |
# Assumes e.g. you have main.c, main2.c, mylib.c and mylib.h. | |
# CC = gcc # Optional. Will use system default if not given here e.g. gcc or clang. | |
CFLAGS = -g -Wall -fanalyzer # $(shell pkg-config --cflags openssl) | |
# LIBS=$(shell pkg-config --libs openssl) | |
# LDFLAGS = $(LIBS) | |
bins = myprogram1 myprogram2 | |
all: $(bins) |
# License: MIT | |
# Copyright (c) 2022 Daniel Garcia-Briseno | |
# | |
# Permission is hereby granted, free of charge, to any person obtaining a copy | |
# of this software and associated documentation files (the "Software"), to deal | |
# in the Software without restriction, including without limitation the rights | |
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
# copies of the Software, and to permit persons to whom the Software is | |
# furnished to do so, subject to the following conditions: | |
# |
FROM bbsio/synchronet:latest | |
ARG DOSEMU_DEB_URL=http://ftp.us.debian.org/debian/pool/contrib/d/dosemu/dosemu_1.4.0.7+20130105+b028d3f-2+b1_amd64.deb | |
ARG DOSEMU_DEB=dosemu_1.4.0.7+20130105+b028d3f-2+b1_amd64.deb | |
RUN apt-get update \ | |
&& apt-get install -y rsh-redone-client locales locales-all \ | |
mtools dosfstools dos2unix ser2net socat | |
ENV USER=root LC_ALL=en_US.UTF-8 LANG=en_US.UTF-8 LANGUAGE=en_US.UTF-8 |
# fish autocomplete for rmw | |
# put this file in ~/.config/fish/completions/rmw.fish | |
# and that's it | |
complete rmw -l version -d 'Display rmw version' | |
complete rmw -s h -l help -d 'display help' | |
complete rmw -s v -l verbose -d 'Explain what is done' | |
complete rmw -s R -s r -l recursive -d 'Recursively remove subdirs' | |
complete rmw -s i -l interactive -d 'Prompt for removal (not implemented)' | |
complete rmw -s f -l force -d 'Never prompt for removal' |