Initial commit

This commit is contained in:
2025-03-31 13:25:04 +02:00
commit f6ec631d33
7 changed files with 1045 additions and 0 deletions

13
Makefile Normal file
View File

@@ -0,0 +1,13 @@
# SPDX-FileCopyrightText: 2025 Ämin Baumeler <amin@indyfac.ch>
#
# SPDX-License-Identifier: GPL-3.0-or-later
CFLAGS = -Wall -Ofast
all: superflow
clean:
rm -v superflow
%: src/%.c
gcc $(CFLAGS) -o $@ $^