This commit is contained in:
Nikolaj
2021-12-16 14:04:17 +01:00
parent 066ca1ca8a
commit 281b65339c
19 changed files with 1359 additions and 0 deletions

14
A5/Makefile Normal file
View File

@ -0,0 +1,14 @@
CC = gcc
CFLAGS = -Wall -std=c11 -g -ggdb
all: sim
../src.zip: *.c *.h
cd .. && zip src.zip src/*
sim: *.c *.h
$(CC) $(CFLAGS) *.c -o sim
clean:
rm -rf *.o sim test_runs