DEFS   = -DFAST_FLOATS -DEVIL_HACK#-DPROTOTYPES -DNODIVZERO -D_POSIX_SOURCE -DPROTOTYPES \
-DTIME 
CFLAGS = -O3 -static -pipe
LIBS   = -lX11 -lm
INCS   = char.h constants.h gi.h macros.h types.h 
  CC   = gcc 

x3d: x3d.c $(INCS)
	$(CC) $(CFLAGS) $(DEFS) -o x3d x3d.c $(LIBS) 

clean:
	rm x3d
