initial commit

This commit is contained in:
Felix Van der Jeugt 2022-11-01 22:09:32 +01:00
commit 563b1b0c5a
No known key found for this signature in database
GPG key ID: 58B209295023754D
7 changed files with 335 additions and 0 deletions

12
makefile Normal file
View file

@ -0,0 +1,12 @@
CFLAGS += -g -Wall -Werror -pedantic -ansi
all: planarbot inputfile
valgrind ./planarbot < inputfile
planarbot: planarbot.o arraylist.o sortedmap.o
planarbot.o: arraylist.h
arraylist.o: arraylist.h
sortedmap.o: sortedmap.h
clean:
rm -f *.o planarbot