#
# comments start with a # sign
#
# each item in the make file consists of
# three things:  a product, its ingredients and how to make it
#
# gcc -o test test.c -lcurses
# CC = gcc -g -Wall


CC = g++ -g -Wall
        
map: map.o bitset.o
	$(CC) map.o bitset.o -o map
        
bitset.o: bitset.cpp bitset.hpp
	$(CC) -c bitset.cpp
	
map.o: map.cpp
	$(CC) -c map.cpp