From 12d3ce2f336f634d6e49dcb014411aca1444b082 Mon Sep 17 00:00:00 2001 From: Kyle K Date: Wed, 13 Oct 2010 02:34:58 -0500 Subject: Initial camera --- sdl/Makefile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'sdl/Makefile') diff --git a/sdl/Makefile b/sdl/Makefile index 0ea6faa..51a013f 100644 --- a/sdl/Makefile +++ b/sdl/Makefile @@ -1,5 +1,5 @@ PROG = pyramid -OBJS = $(PROG).o math3d.o gltools.o +OBJS = $(PROG).o math3d.o gltools.o glframe.o CC = gcc DBGFLAGS = -g -O0 ifdef DEBUG @@ -23,7 +23,10 @@ math3d.o: math3d.c math3d.h $(CC) -c $(CFLAGS) math3d.c gltools.o: gltools.c gltools.h math3d.h - $(CC) -c $(CFLAGS) gltools.c + $(CC) -c $(CFLAGS) gltools.c + +glframe.o: glframe.c math3d.h + $(CC) -c $(CFLAGS) glframe.c .PHONY: clean -- cgit v1.2.3