From 3c66eb3ecfa32f3fc1ffdcc9ac584a32ecf6ddc3 Mon Sep 17 00:00:00 2001 From: Pixel Date: Mon, 4 Nov 2002 15:20:51 +0000 Subject: Whooops, forgot a Makefile... --- mogltk/Makefile | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100755 mogltk/Makefile (limited to 'mogltk/Makefile') diff --git a/mogltk/Makefile b/mogltk/Makefile new file mode 100755 index 0000000..510baa6 --- /dev/null +++ b/mogltk/Makefile @@ -0,0 +1,16 @@ +#!/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 +TARGET = mogltk.a + +all: ${TARGET} + +mogltk.a: ${OBJECTS} + ar -r mogltk.a ${OBJECTS} + ranlib mogltk.a + +clean: + rm -f *.o ${TARGET} compil.c -- cgit v1.2.3