#!/usr/bin/make -f CPPFLAGS=-Wall -g -O3 -mcpu=i686 -Werror -I../includes -DHAVE_ZLIB `sdl-config --cflags` CXX=g++ OBJECTS = glbase.o engine.o gltexture.o glfont.o TARGET = mogltk.a all: ${TARGET} mogltk.a: ${OBJECTS} ar -r mogltk.a ${OBJECTS} ranlib mogltk.a clean: rm -f *.o ${TARGET} compil.c