# Makefile for Tank 0.4a # #(C) COPYRIGHT Vincent S. Cojot and others 1996 # All Rights Reserved # Licensed Materials - Property of Vincent S. Cojot and others. # Use, duplication or disclosure restricted by Vincent S. Cojo # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 1, or (at your option) # any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. # GLAUXLIB = /usr/X11R6/lib GLAUXINC = /usr/include/aux all: @echo "*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*" @echo "Please select one of the following options:" @echo " make linux-opengl for Linux boxes with OpenGL" @echo " make linux-mesa for Linux boxes with Mesa" @echo " make linux-mesa-elf for Linux boxes with Mesa shared libs" @echo " make aix-opengl for IBM RS/6000 with OpenGL" @echo " " @echo "Please remember to set the values of GLAUXLIB and GLAUXINC" @echo "inside the top-level Makefile to indicate where the" @echo "aux library is located. The aux library is included in" @echo "Mesa so you don't need to set this if you're using Mesa." @echo "*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*" linux-opengl: $(MAKE) -f Makefile.Linux "GLAUXLIB = $(GLAUXLIB)" \ "GLAUXINC = $(GLAUXINC)" linux-elf linux-mesa: # cd Mesa; $(MAKE) linux $(MAKE) -f Makefile.Linux.Mesa linux linux-mesa-elf: # cd Mesa; $(MAKE) linux-elf $(MAKE) -f Makefile.Linux.Mesa linux-elf aix-opengl: $(MAKE) -f Makefile.RISC6000 "GLAUXLIB = $(GLAUXLIB)" \ "GLAUXINC = $(GLAUXINC)" aix-opengl clean: @echo "*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*" @echo "Please select one of the following options:" @echo " make opengl-clean for boxes with OpenGL" @echo " make mesa-clean for boxes with Mesa" @echo "*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*" opengl-clean: $(MAKE) -f Makefile.Linux clean mesa-clean: # cd Mesa; $(MAKE) clean $(MAKE) -f Makefile.Linux clean backup: $(MAKE) -f Makefile.Linux backup restore: $(MAKE) -f Makefile.Linux restore