CFLAGS=-Wall -Wextra -std=c99 -pedantic OBJ=test.o map.o all: test test: $(OBJ) $(CC) -o $@ $(CFLAGS) $(OBJ) clean: rm -f test *.o