1 2 3 4 5 6 7 8 9 10
CFLAGS=-Wall -Wextra -std=c99 -pedantic OBJ=test.o map.o all: test test: $(OBJ) $(CC) -o $@ $(CFLAGS) $(OBJ) clean: rm -f test *.o