Mailing-List: contact cygwin-help AT sourceware DOT cygnus DOT com; run by ezmlm List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner AT sourceware DOT cygnus DOT com Delivered-To: mailing list cygwin AT sourceware DOT cygnus DOT com Message-ID: <383528A5.EB7EB289@cadlab.tu-berlin.de> Date: Fri, 19 Nov 1999 11:38:29 +0100 From: Georg Fusz X-Mailer: Mozilla 4.7 [en] (WinNT; I) X-Accept-Language: en MIME-Version: 1.0 To: Cygnus Mailing List Subject: OpenGl - Simple Example - Header Files Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Thanks to hint from "Paul Garceau" i found a simple example for an OpenGl-program. The Example is found on http://www.geocities.com/SiliconValley/Code/1219/opengl32.html Here is my Makefile : very straight foreward # $Id: Makefile,v 1.1 1999/11/18 21:37:33 fusz Exp $ CFLAGS = -g CC = gcc %.o : %.c $(CC) -c $(CFLAGS) $(CPPFLAGS) $< -o $@ objects = sample.o sample.exe: $(objects) Makefile $(CC) -g -o $@ $(objects) -mwindows -lopengl32 Headerfiles: I used files looking similiar to the ones in Visual C++ version 4.0 and stored them in i386-mingw32msvc/include/gl. Georg Fusz -- Want to unsubscribe from this list? Send a message to cygwin-unsubscribe AT sourceware DOT cygnus DOT com