initial commit
This commit is contained in:
commit
563b1b0c5a
7 changed files with 335 additions and 0 deletions
12
makefile
Normal file
12
makefile
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue