diff options
-rw-r--r-- | dat | 12 | ||||
-rw-r--r-- | depend.mak | 5 | ||||
-rw-r--r-- | makefile | 5 |
3 files changed, 14 insertions, 8 deletions
@@ -3,7 +3,7 @@ # Note that when using object names, case is important. Case in commands and # arguments is not. # -# $Id: dat,v 1.1.1.1 2006-05-02 19:12:45 ianc Exp $ +# $Id: dat,v 1.2 2007-05-22 23:27:20 ianc Exp $ # @@ -253,10 +253,10 @@ look_at Sun; # # eg. -# num_texture 3; -# texture Moon,moon.raw,256,256; -# texture Earth,earth.raw,512,256; -# mreuse Belt,10,Moon; +num_texture 3; +texture Moon,moon.raw,256,256; +texture Earth,earth.raw,512,256; +mreuse Belt,10,Moon; # Define rings @@ -306,7 +306,7 @@ look_at Sun; ring Earth,2.0,2.1,1.0,1.0,1.0,0.6,0.5,45; # eg. -# ring_texture Earth,ring.raw,256,256; +ring_texture Earth,ring.raw,256,256; # Define trails. If enabled objects leave behind a point as they travel. @@ -0,0 +1,5 @@ +glgrav.o: glgrav.cpp global.h config.h mass.h particles.h sparks.h +mass.o: mass.cpp mass.h global.h +config.o: config.cpp config.h global.h mass.h +particles.o: particles.cpp particles.h global.h +sparks.o: sparks.cpp sparks.h global.h @@ -19,7 +19,7 @@ # # ------------------------------------------------------------------------- # -# $Id: makefile,v 1.1.1.1 2006-05-02 19:12:45 ianc Exp $ +# $Id: makefile,v 1.2 2007-05-22 23:27:20 ianc Exp $ # TARGET = glgrav @@ -41,7 +41,8 @@ OBJECTS = $(SOURCES:.cpp=.o) # NOTE1: Use these libs for GNU/linux. They should work with any unix that has # X11 too. # -LIBS = -L/usr/X11R6/lib -lglut -lGLU -lGL -lX11 -lXext -lXi -lXmu -lm +#LIBS = -L/usr/X11R6/lib -lglut -lGLU -lGL -lX11 -lXext -lXi -lXmu -lm +LIBS = -L/usr/X11R6/lib -lglut -lGLU -lGL -lX11 -lXext -lm # NOTE2: Use thes libs for cygwin |