summaryrefslogtreecommitdiff
path: root/Makefile
blob: ef4e26972c78d69f70503954733dfb3dd35e743a (plain)
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