# You can use command line mingw32-make and pretend you are on linux
# Be sure to rename this file Makefile
CC=g++
CFLAGS=-Wall
DEPS=OpenGL_TankTemplate.h graphicsUtils.h Tanks.h
OBJ =OpenGL_TankTemplate.o graphicsUtils.o Tanks.o

LIBS=-lopengl32 -lglu32 -lglut32 
%.o: %.cpp $(DEPS)
	$(CC) -c -o $@ $< $(CFLAGS)

test: $(OBJ)
	$(CC) -o $@ $^ $(CFLAGS) $(LIBS)
